WORD 和 PDF 转文本 Web 服务
我正在寻找编写(或使用现有的)Web 服务,该服务采用 MS WORD 和 PDF 文件,提取其内容并将其作为文本返回。
有人知道这样的服务或如何编写这样的服务吗?
I'm looking to write (or use an existing) web service that takes an MS WORD and PDF file, extracts it's content and returns it as text.
Anyone knows of such a service or how to write one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于单词到文本,您可以使用
antiword
并将其输出传递给客户端。对于 PDF,有 PdfTk - 它的 dump_data 操作可能很有用。
For Word-to-text you can use
antiword
and pass its output to the client.For PDF, there's PdfTk - its dump_data operation might be useful.