When I run

convert *.jpg output.pdf

the output looks like this:

enter image description here

Why is the first page bigger then the others in the PDF? The original JPEGs were all the same size!

link|improve this question

62% accept rate
Oh @Lord, how we love your edits! – Ivo Flipse Mar 9 '11 at 16:07
feedback

1 Answer

A JPEG image can store a resolution (i.e. pixels per inch) in addition to its geometry (actual number of pixels). convert uses the resolution when converting JPEGs to a PDF. It's probable that the first image has a lower resolution than the others. If they have the same size in pixels, then an image with a lower pixels per inch will be bigger.

Try running identify -verbose file.jpg on a couple of the images. Look for the "Resolution:" and "Print size:" lines near the beginning of that output.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.