嗨,这是我在这里的第一篇文章。
我无法将docx文件从PHP转换为pdf。 我使用PHPDOCX将docx转换为xhtml,然后将XHTML传递给TCPDF以生成PDF。但我失去了很多格式。
所以我猜上面的方法毫无意义。
是否有任何免费库可以从PHP动态转换docx到pdf?
答案 0 :(得分:1)
$phpLiveDocx = new Zend_Service_LiveDocx_MailMerge();
$phpLiveDocx->setUsername('username')
->setPassword('password');
$phpLiveDocx->setLocalTemplate('document.doc');
// necessary as of LiveDocx 1.2
$phpLiveDocx->assign('dummyFieldName', 'dummyFieldValue');
$phpLiveDocx->createDocument();
$document = $phpLiveDocx->retrieveDocument('pdf');
file_put_contents('document.pdf', $document);
unset($phpLiveDocx);
Click here详细信息
答案 1 :(得分:0)
你可以通过fallowing链接,我们有phpdocx库。它可以帮助你
www.phpdocx.com