$docx->createDocx($file_path_not_extension);
$docx->enableCompatibilityMode();
$docx->transformDocument($file_path_not_extension . 'docx',$file_path_not_extension . '.pdf');
DOCX-flie It creates good, but PDF is not created.
I don't have this classes (TransformDocAdvLibreOffice() or TransformDocAdvOpenOffice())
if ($this->_phpdocxconfig['transform']['method'] == 'libreoffice') {
$convert = new TransformDocAdvLibreOffice();
$convert->transformDocument($docSource, $docDestination, $tempDir, $options);
} else {
$convert = new TransformDocAdvOpenOffice();
$convert->transformDocument($docSource, $docDestination, $tempDir, $options, $version);
}
My operation system Ubuntu 15.10 and I have LibreOffice package. Please help me.