Hi,
I'm generating both of my documents. The DOCX from a template, and PDF from the newly created DOCX.
For some reason unbeknownst to me, the PDF doesn't carry across the formatting that the word document had. Any ideas? It's lacking images, font sizes (the sub/superscript on 2nd), converting black underlines to gray font etc etc.
http://i.imgur.com/H6toiDw.png
This is my PDF code;
$document = new TransformDoc();
$document->setStrFile($filename .'.docx');
$document->generatePDF($filename . '.pdf');
Thanks,
Harry