Hi
I am using TransformDoc to convert docx files to HTML. My problem is that, I am not able to get the images in the docx file after converting to HTML.
Following is the code I am using
$document = new TransformDoc();
$document->setStrFile('test1.docx');
$document->generateXHTML();
$html = $document->getStrXHTML();
Is there any way, I can get image file also, along with the converted HTML ?