我可以使用 Node.js 阅读 PDF 或 Word 文档吗?
我找不到任何软件包来执行此操作。我知道 PHP 有大量的 PDF 库(例如 http://www.fpdf.org/),但是 Node 有什么库吗?
I can't find any packages to do this. I know PHP has a ton of libraries for PDFs (like http://www.fpdf.org/) but anything for Node?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
texttract 是一个很棒的库,支持 PDF、Doc、Docx 等。
textract is a great lib that supports PDFs, Doc, Docx, etc.
好像有几个pdf版的,但是我没找到Word版的。
无论如何,像这样的 CPU 密集型处理并不是 Node 的真正强项(也就是说,使用 Node 来完成此任务不会比任何其他语言获得额外的好处)。一种务实的方法是找到一个好的工具并从 Node.js 中使用它。
我在办公室听到过关于 docsplit 的好消息 http://documentcloud.github.com/docsplit/
虽然它不是 Node,但您可以使用 http://nodejs.org/docs/latest/api/all.html#child_process.exec
Looks like there's a few for pdf, but I didn't find any for Word.
CPU bound processing like that isn't really Node's strong point anyway (i.e. you get no additional benefits using node to do it over any other language). A pragmatic approach would be to find a good tool and utilise it from Node.
I have heard good things around the office about docsplit http://documentcloud.github.com/docsplit/
While it's not Node, you could easily invoke it from Node with http://nodejs.org/docs/latest/api/all.html#child_process.exec
您可以轻松地将一个文件转换为另一个文件,或者使用 .doc 模板生成 .pdf 文件,但您可能希望使用现有的 Web 服务来完成此任务。
例如,可以使用 Livedocx 的服务来完成此操作。
要从节点使用此服务,请参阅node-livedocx (免责声明:我是这个节点模块的作者)
You can easily convert one into another, or use for example a .doc template to generate a .pdf file, but you will probably want to use an existing web service for this task.
This can be done using the services of Livedocx for example
To use this service from node, see node-livedocx (Disclaimer: I am the author of this node module)
我建议您查看 unoconv 进行初始转换,这使用 LibreOffice 或 OpenOffice 进行实际转换。这增加了一些开销。
我会设置一些具有所有必要设置的工作人员,并使用请求/响应队列来处理转换...(可能需要查看 kue 或 zmq)
一般来说,这是一个CPU 密集型和繁重的任务应该是已卸载... Pandoc 和其他人特别提到了
.docx
,而不是.doc
,因此它们可能也可能不是选项。注意:我知道这个问题很旧,只是想为遇到这个问题的其他人提供当前的答案。
I would suggest looking into unoconv for your initial conversion, this uses LibreOffice or OpenOffice for the actual conversion. Which adds some overhead.
I'd setup a few workers with all the necessities setup, and use a request/response queue for handling the conversion... (may want to look into kue or zmq)
In general this is a CPU bound and heavy task that should be offloaded... Pandoc and others specifically mention
.docx
, not.doc
so they may or may not be options as well.Note: I know this question is old, just wanted to provide a current answer for others coming across this.
您可以对 pdf 文件使用 pdf-text。它将把 pdf 中的文本提取到文本“块”数组中。对于对结构化 pdf 文本进行模糊解析很有用。
对于 docx 文件,您可以使用 mammoth,它会从 .docx 文件中提取文本。
我希望这会有所帮助。
you can use pdf-text for pdf files. it will extract text from a pdf into an array of text 'chunks'. Useful for doing fuzzy parsing on structured pdf text.
for docx files you can use mammoth, it will extract text from .docx files.
I hope this will help.
要解析 pdf 文件,您可以使用 pdf2json 节点模块
它允许您转换pdf 文件转换为 json 以及原始文本数据。
For parsing pdf files you can use pdf2json node module
It allows you to convert pdf file to json as well as to raw text data.
如果您只需要从 Word 文档进行转换,另一个不错的选择是 Mammoth.js。
Another good option if you only need to convert from Word documents is Mammoth.js.
以下示例展示了如何使用 PDF.js 从 PDF 下载和提取文本:
Here is an example showing how to download and extract text from a PDF using PDF.js:
您可以使用 Aspose.Words Cloud SDK for Node.js 从 DOC/DOCX 中提取文本,打开 Office 和 PDF。它是付费 API,但免费计划提供每月 150 次免费 API 调用。
PS:我是 Aspose 的开发人员布道者。
You can use Aspose.Words Cloud SDK for Node.js to extract text from DOC/DOCX,Open Office, and PDF. It's paid API but the free plan provides 150 free monthly API calls.
P.S: I'm developer evangelist at Aspose.