我在通过ImageMagick将pdf转换为jpg时遇到问题。
以下命令通过从jpg文件生成pdf文件而成功工作。
convert.exe -density 300 "C:\TEMP\testing.jpg" -depth 8 "C:\TEMP\testing.pdf"
但是,通过将pdf文件转换回jpg文件来逆转过程似乎无效。
未显示错误,但未生成输出文件。
convert.exe -density 300 "C:\TEMP\testing.pdf" -depth 8 "C:\TEMP\testing.jpg"
我已经为Windows x64安装了来自https://imagemagick.org/script/download.php的最新imagemagick(ImageMagick-7.0.8-37-Q16-x64-dll.exe)和来自https://www.ghostscript.com/download/gsdnld.html的ghostscript(9.27)。
您的帮助将不胜感激。