如何将msword doc文件和pdf文件转换为html内容
在我的网站中,用户可以上传 msword 和 pdf 文件。我需要读取word和pdf文件并将其作为html内容显示给用户。如何做到这一点
In my site user can uploads msword and pdf files. i need to read word and pdf file and to display as an html content to user. How to do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您应该使用一些工具来进行此类转换。
Maybe you should use some tool for such kind of conversions.
我建议使用 OpenOffice 作为服务器上的无头守护程序。 OpenOffice 非常擅长转换文档,并提供与其他进程通信的接口。不幸的是仅支持 python 和 java。因此,您必须添加某种粘合代码,以使其与 PHP 配合良好。这就是我在自己的 web 应用程序中将 .doc(x)/.ppt(x) 文档转换为 pdf 的方式,并且工作起来非常简洁。
这是使用 OpenOffice 和 Python 的指南(保证您实际上不需要编写大量 Python 代码!)进行此类转换http://www.oooforum.org/forum/viewtopic.phtml?t=3451
I recomment using OpenOffice as a headless daemon on your server. OpenOffice is incredibly good at converting documents and offers an inteface for communicating with other processes. Unfortunately only python and java is supported. So you have to add some kind of glue code, to make it play nice with PHP. Thats the way I use to convert .doc(x)/.ppt(x) documents to pdf in my own webapp and works really neat.
Here is a guide for using OpenOffice and Python (you won't really need to code lots of python, promised!)for such conversions http://www.oooforum.org/forum/viewtopic.phtml?t=3451