我只想问一下,是否有任何资源可以像Word、Excel或powerpoint那样进行PDF到可编辑文档的转换。如果可能的话,请告诉我。我喜欢的架构是NodeJS或Javascript。我做了以下研究:
如果有任何可用的付费资源,一定要共享,而且它不能是API,因为我需要提供离线支持。
问候阿里·穆卡达斯
发布于 2017-12-20 07:59:59
为此您可以使用unoconf (https://github.com/gfloyd/node-unoconv)。
来自库自述的示例:
unoconv.convert('document.docx', 'pdf', function (err, result) {
// result is returned as a Buffer
fs.writeFile('converted.pdf', result);
});发布于 2021-11-15 02:19:17
https://stackoverflow.com/questions/47900145
复制相似问题