I am using corporate license and openoffice 3.4
I have also started openoffice headless service.
When I convert my docx to pdf, the header, footer(addHeader() and addFooter functions) and pagebreak('type' => 'page') are all not working in my pdf, but they work in docx.
I am using the below code for conversion:
-------------------------------------------------------------------------
$docx->createDocx('report');
$document = new TransformDoc();
$document->setStrFile('report.docx');
$document->generatePDF();
-------------------------------------------------------------------------
Please let me know what's the issue.
Thanks in advance,
Tinu