I want to convert a postscript file (.PS) into a PDF file. I'm using the following command line:
Code: Select all
convert -limit memory 1GiB -limit map 2GiB -define registry:temporary-path="c:\tmp" -density 300x300 -page A4 -colors 2 +dither -monochrome -compress group4 input.ps output.pdf
For testing, I changed the output from PDF to TIF:
Code: Select all
convert -limit memory 1GiB -limit map 2GiB -define registry:temporary-path="c:\tmp" -density 300x300 -page A4 -colors 2 +dither -monochrome -compress group4 input.ps output.tif
What is the cause? I'm using ImageMagick 6.8.9-9 Q16 x86 2014-10-19.
Best regards
akapuma