I am converting some scanned documents (.jpg) to pdf. As per the gimp, my jpgs are set to the right print-size for a4, but after
the paper size of the resulting pdf only seems to be right if i use the -page a4 switch. Where does convert take the default paper size from (obviously not from the input image, since i set that to a4)? Is it possible to set -page a4 as a default value somewhere?
There is a similar issue with the compression of the jpg images. convert ignores the quality of the given image, and just sets some arbitrary compression value for the image in the pdf (proabably 85% or something like that). It still works if i explicitly set the compression value
Code: Select all
convert -quality 40 image.jpg doc.pdf
but it would seem to be very convenient if convert was clever enough to use the compression of the input image for the output image as well. Is this possible?