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

前端 未结 4 1177
醉梦人生
醉梦人生 2020-12-28 13:44

I want to convert multi page pdfs into single page images efficiently.

I already know how to do this one page at a time with imagemagick. For example,



        
4条回答
  •  有刺的猬
    2020-12-28 14:05

    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
    

提交回复
热议问题