Before conversion of a PNG to JPG, in Photoshop, I see:
5"x7.5"
300ppi
When I use this command:
Code: Select all
convert image.png -flatten -density 72 -depth 8 -quality 100 -units PixelsPerInch image.jpg
8.242"x12.363"
182ppi
Just curious why the images is 182ppi?
What I was expecting to see:
20.833"x31.25"
72ppi
Thanks!