Question

I want to convert different image formats (bmp,jpg,gif,png,tiff-incluging multipaged) into a PDF format with A4 page size and with images fit to page (resized if necessary). Image should be positioned at the center of the page and I'd like to define an offset. I tried the code below but there is no offset at the top and the image quality is really poor.

convert png.png -gravity North -resize 500x500 -quality 100 -page a4x5x5 myout.pdf

Is there any way to do that?

Thanks in advance for any help, Mariusz

Was it helpful?

Solution 4

Thanks to the ImageMagick support forum I was able to find a solution:

convert image.tif -resize 575x823^> -gravity center -background white -extent 595x842 image.pdf

If you get an error try:

convert image.tif -resize 595x842^\> -gravity center -background white -extent 595x842 image.pdf

OTHER TIPS

If you want to keep the original resolution (lossless) you can try the following command:

convert png.png -background white -page a4 myoutput.pdf

Based on a comment posted before: https://stackoverflow.com/a/24573341/6747994

@m4tx This command only makes sense if the picture has a resolution above 500x800px, it does not zoom in, to avoid pixelated thumbnails.

You can convert to pdf using ImageMagick

convert png.png myout.pdf

but use pdfjam instead of ImageMagick to adjust the page size

pdfjam --paper a4paper --outfile myoutA4.pdf myout.pdf

pdfjam offers other options, which may fit your needs.

Found this somewhere on stackoverflow:

convert *.jpg -resize 1240x1753 \
                      -extent 1240x1753 -gravity center \
                      -units PixelsPerInch -density 150x150 multipage.pdf

You need to specify the density:

convert -density 80 -page a4 input_A.jpg input_B.jpg output.pdf

Otherwise, there can be an issue when printing with "actual size" instead of "fit". I have used a public printer where I could not choose "fit" and had to choose "actual size", in which case the printed page was only a part of the page which I wanted to print.

Fit vs. Actual Size

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top