我可以使用以下命令获取 JPEG 图像的 PPI:
$ identify -format "%w x %h %x x %y" mypic.jpg
1600 x 1200 72 PixelsPerInch x 72 PixelsPerInch
但是,当我在 PNG 格式上运行相同的命令时,我得到每厘米像素数:
$ identify -format "%w x %h %x x %y" mypic.png
1600 x 1200 28.35 PixelsPerCentimeter x 28.35 PixelsPerCentimeter
有没有办法更改命令以获取 PNG 格式的每英寸像素 (PPI),或者根据每厘米像素计算 PPI?