将DOCX从PHP转换为PDF

将DOCX从PHP转换为PDF,php,xhtml,tcpdf,Php,Xhtml,Tcpdf,嗨,这是我在这里的第一篇帖子 我无法将docx文件从PHP转换为pdf。 我使用PHPDOCX将docx转换为xhtml,然后将xhtml传递给TCPDF以生成PDF。但是我丢失了很多格式 所以我想上面的方法是没有意义的 有没有免费的库可以从PHP动态地将docx转换为pdf $phpLiveDocx = new Zend_Service_LiveDocx_MailMerge(); $phpLiveDocx->setUsername('username') ->

嗨,这是我在这里的第一篇帖子

我无法将docx文件从PHP转换为pdf。 我使用PHPDOCX将docx转换为xhtml,然后将xhtml传递给TCPDF以生成PDF。但是我丢失了很多格式

所以我想上面的方法是没有意义的

有没有免费的库可以从PHP动态地将docx转换为pdf

$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);
详述


您可以通过fallowing链接,那里有phpdocx库。它可能会对您有所帮助


www.phpdocx.com

@rcro,标题可能相同,但那篇文章对我没有帮助。那么,也许你可以告诉我们其他解决方案有什么问题?你犯了什么错误?请仔细阅读我的问题。我已经使用了PHPDOCX,但没有得到结果。对不起,您可以查看另一个链接,www.phplivedocx.org/2009/02/06/convert-doc-to-pdf-in-php/I不允许使用ZEND framework。还有其他选择吗?感谢集成在核心PHP中的LiveDocx(microsoft)在线服务。签出第二个链接