pdf files don't have a defined size, they are vectorial files. In these cases ImageMagick uses a default density of 72ppi. If you want to change this value use a command like:
convert pdffile.pdf[0] -density 150 -units pixelsperinch pdfj2peg.jpg
Search found 2 matches
- 2011-01-25T09:24:37-07:00
- Forum: Users
- Topic: Image output size incorrect
- Replies: 3
- Views: 6570
- 2011-01-25T07:12:57-07:00
- Forum: Users
- Topic: Getting the color profile name using identify -format
- Replies: 0
- Views: 3546
Getting the color profile name using identify -format
Hi everyone, I'm trying to get the ICC profile name of an image (which is visible using the -verbose option) using identify and the -format option. I've searched in the escapes list but I don't find it. I would like to do something like: identify -format "%m %w %h %[icc-name]" <fileName> But of ...