Hello
Whenever I transform a docx to a PDF I get a blank page at the end of my document.
It doesn't happen when I only have like 5 lines. But usually 2/3 of the page is filled with text.
$docx = new CreateDocxFromTemplate($template);
$docx->enableCompatibilityMode();
$docx->replaceVariableByText(['EXAMPLE' => 'value']);
$docx->createDocx($docXFile);
$docx->transformDocument($docXFile, $pdfFile, null, ['odfconverter' => false]);
I am running with OpenOffice v4.4.1
There are not empty lines or page breaks in the template.
Thanks.