本文介绍了在Javascript中将PDF拆分为单独的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个很大的pdf文件,我想将它拆分为单独的PDF文件,每个页面都在单独的文件中。

i Have a big pdf file and i would like to split it in separate PDF files, each page in separate file.

可以在JS中执行此操作使用节点模块。

It is possible to do that in JS with node module.

我搜索但是在npm中我只有将html转换为pdf的模块

I search but in npm i just have modules that convert html to pdf

推荐答案

经过大量的搜索并且几乎放弃了,我最终发现HummusJS库会做我想做的事情!感谢@Taxilian

After a lot of searching and nearly giving up, I did eventually find that the HummusJS library will do what I want to do! thanks to @Taxilian

查看此帖子

这篇关于在Javascript中将PDF拆分为单独的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 01:34