convert microsoft documents into pdf with nodejs [closed]

狂风中的少年 提交于 2019-12-13 11:46:21

问题


DO you know any library to convert Microsoft Office documents like Word (.doc) or Excel (xlsx) into PDF using NodeJS? I have been looking around with no luck. Thanks


回答1:


Well, I think the best possible converting option would be using the LibreOffice headless command line option.

libreoffice --headless --convert-to pdf *.odt

So if you want to call from Node.js, you have to wrap the command line call into child process http://nodejs.org/api/child_process.html



来源:https://stackoverflow.com/questions/20959262/convert-microsoft-documents-into-pdf-with-nodejs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!