Converting a multi page pdf to multiple pages using a single command

依然范特西╮ 提交于 2019-11-30 04:27:28
beak42

You're missing the quantity of digits. Use:

convert x.pdf x-%04d.jpg

Where 4 means 4 digits will be show on the page count.

If you use Graphicsmagick on Debian or ImageMagick on macOS you probably have to add ADJOIN to your command. So it should look like

convert x.pdf +adjoin x-%04d.jpg

Ran into the same issue. Reinstall Imagemagick to work in Mountain Lion. If you use brew the simply

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