On certain PDF files, when I run this command with -density 200 like this:
Code: Select all
convert -density 200 "/mnt/git/tmp/E33.pdf" -quality 100 /tmp/aaaa.png
Code: Select all
convert: FailedToExecuteCommand `"gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r200x200" "-sOutputFile=/tmp/magick-2957kte8nXSWCLOh%d" "-f/tmp/magick-2957ERH_nxorvD7R" "-f/tmp/magick-2957J7WL_niXZyqs"' (-1) @ error/delegate.c/ExternalDelegateCommand/461.
convert: no images defined `/tmp/aaaa.png' @ error/convert.c/ConvertImageCommand/3210.
1. it works fine with -density 100, eg:
Code: Select all
convert -density 100 "/mnt/git/tmp/E33.pdf" -quality 100 /tmp/aaaa.png
Is there a way to debug what gs command is being ran? Is there a way to figure out what is breaking?
Thanks!