hello,
in localhost,
when I create a docx document, then I transform it into pdf (with msword), I end up with this error:
TransformDocAdvMSWord.php on line 117 Call Stack #TimeMemoryFunctionLocation 10.0009252616 {main}
the code:
$strContent = "<p>test</>";
$docx = new Phpdocx\Create\CreateDocx();
$docx->embedHTML($strContent);
if(!file_exists($racine)){
mkdir($racine, 0777, true);
}
$docx->createDocx($racine."FIRST_PAGE_GB");
$docx>transformDocument($racine.'FIRST_PAGE_GB.docx', $racine.'FIRST_PAGE_GB.pdf', 'msword');
The .ini config:
[transform]
method = "msword"
path = "C:\Program Files (x86)\Microsoft Office\root\Office16\WINWORD.EXE"
someone has any idea what's going on?
Thank you