I have a 300 dpi jpeg that is 5400 pixels by 3600 pixels (so 18 inches X 12 inches) that I need to convert to a pdf file - our client's printing company requires the file in pdf form.
When i do (using ImageMagick 6.4.1):
Code: Select all
convert image.jpg final.pdf
Frustrated, i did a little math and found that 5400 pixels / 72 pixels per inch = 75 inches, which may explain the odd sizing problem, but not why the image is down in the bottom left corner.
I also tried changing the command to take density into account:
Code: Select all
convert image.jpg -density 300 final.pdf
I've heard of other people having this issue, but have not been able to find a satisfactory solution. one suggestion was to convert the image to postscript first and have ps2pdf turn the postscript file into a pdf. unfortunately i ended up with a pdf that (1) had tons of nasty jpeg compression artifacts, (2) used a standard 8.5 inch X 11 inch page (cropped my 18 inch x 12 inch image), and (3) ignored or lost the color profile i was applying to the image (which is very important to the printing company. they supplied an ICC file that was getting applied just fine to my pdf when using image magick but with the sizing issue it is unsatisfactory to them)
I would greatly appreciate some help or a suggestion to overcoming this problem. our client does not want to pay the printing company to crop the pdf before they print it and due to my lack of experience in these matters I have run out of options.