300dpi PDFs?
Posted: 2009-10-20T01:06:59-07:00
I'm trying to a create a PDF of 300dpi, but always end up with 72x72.
convert -verbose -density 300 source.png output.pdf
The source PNG is 300dpi, but the output PDF is always 72x72. Is this correct? The print size is massively inflated. I've also tried,
convert -verbose source.png -density 300 output.pdf
Here's the identify outputs for both files,
Image: source.png
Format: PNG (Portable Network Graphics)
Class: DirectClass
Geometry: 3911x2775+0+0
Resolution: 300x300
Print size: 13.0367x9.25
Image: output.pdf
Format: PDF (Portable Document Format)
Class: DirectClass
Geometry: 3911x2775+0+0
Resolution: 72x72
Print size: 54.3194x38.5417
I'm using ImageMagick 6.4.5
Thanks
convert -verbose -density 300 source.png output.pdf
The source PNG is 300dpi, but the output PDF is always 72x72. Is this correct? The print size is massively inflated. I've also tried,
convert -verbose source.png -density 300 output.pdf
Here's the identify outputs for both files,
Image: source.png
Format: PNG (Portable Network Graphics)
Class: DirectClass
Geometry: 3911x2775+0+0
Resolution: 300x300
Print size: 13.0367x9.25
Image: output.pdf
Format: PDF (Portable Document Format)
Class: DirectClass
Geometry: 3911x2775+0+0
Resolution: 72x72
Print size: 54.3194x38.5417
I'm using ImageMagick 6.4.5
Thanks