如何将大型PDF文件的页面拆分为单独的新PDF文件每页?

huangapple go评论68阅读模式
英文:

How to split large PDF file pages into separated new PDF files per page?

问题

我想将我的大型书籍PDF文件拆分为单独的文件,最好使用bash命令。

实际:

my-file.pdf

|--page1
|--page2
|--page3
|--...

期望:

  • page1.pdf
  • page2.pdf
  • page3.pdf
  • ...
英文:

I want to split my large book PDF into separated files, ideally using bash command

Actual :

my-file.pdf

|--page1
|--page2
|--page3
|--...

Excpected:

  • page1.pdf
  • page2.pdf
  • page3.pdf
  • ...

答案1

得分: 2

使用大多数Linux发行版中包含的ImageMagick,以及在macOS和Windows上可用。

使用大多数Linux发行版中包含的ImageMagick,以及在macOS和Windows上可用。

    magick YourFile.pdf page%d.pdf

如果仍在使用较旧的v6 ImageMagick,请使用`convert`代替`magick`。
英文:

With ImageMagick which is included in most Linux distros and is available for macOS and Windows.

magick YourFile.pdf page%d.pdf

Use convert in place of magick if still using older v6 ImageMagick.

huangapple
  • 本文由 发表于 2020年1月3日 17:43:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/59576230.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定