ImageMagick:将PDF转换为图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ImageMagick:将PDF转换为图像相关的知识,希望对你有一定的参考价值。

If you don't have Adobe Acrobat Pro to export a PDF to multiple images, you can use this ImageMagick code.

This command will produce the files 'result-0.jpg' , 'result-1.jpg', etc... for each PDF page.
  1. convert -density 150 -quality 100 -resize 800x "file.pdf" "result.jpg"

以上是关于ImageMagick:将PDF转换为图像的主要内容,如果未能解决你的问题,请参考以下文章

ImageMagick 未授权将 PDF 转换为图像

ImageMagick:将PDF转换为图像

将PDF转换为图像时,ImageMagick会更改颜色

ImageMagick 无法在 WSL 上将 PDF 转换为图像

无法使用 ImageMagick 和 GhostScript 将 PDF 转换为 JPG

ImageMagick:在不使用外部文本文件的情况下将选择性图像转换为多页 PDF?