Hello,
Basic namespace setup trying to convert docx > pdf:
$docx = new \Phpdocx\Create\CreateDocx();
$text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.';
$docx->addText($text);
$docx->createDocx(WWW_ROOT.'test');
$transform = new \Phpdocx\Transform\TransformDocAdv();
$transform->transformDocument(WWW_ROOT.'test.docx', WWW_ROOT.'test.pdf');
I get the following error:
"Cannot instantiate abstract class Phpdocx\Transform\TransformDocAdv"
Please advise as I bought this product specifially for this purpose.
I get the same error when trying "/examples/FormatConversion/transformDocument/sample_2.php"
Thanks in advance :)