2013-07-25 180 views
-1

嗨,这是我第一篇文章。将DOCX转换为PDF格式的PDF

我在将PDF文件转换为PDF格式时遇到了麻烦。 我正在使用PHPDOCX将docx转换为xhtml,然后将XHTML传递给TCPDF以生成PDF。但是我失去了很多格式。

所以我想上面的方法是毫无意义的。

是否有任何免费的库,从PHP转换docx到pdf?

+0

@ rcro,标题也许相同,但是这个帖子并没有帮助我。 –

+0

那么,那么也许你可以告诉我们其他解决方案有什么问题?你得到了什么错误? – madth3

回答

0

你可以通过下面的链接,还有我们有phpdocx library.It可以帮助你

www.phpdocx.com

+0

请正确阅读我的问题。我已经使用了PHPDOCX,并没有得到结果。 –

+0

对不起,您可以检查另一个链接:www.phplivedocx.org/2009/02/06/convert-doc-to-pdf-in-php/ – Manju

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细节

Link

+0

我不允许使用ZEND框架。还有其他的选择吗?感谢 –

+0

您的LiveDocx(微软)在线服务,您可以将其集成到您的核心PHP中。 结帐第二个链接 http://www.phplivedocx.org/articles/using-livedocx-without-the-zend-framework/ –