2014-04-14 59 views

回答

1

識別不支持-auto-orient選項,因此您必須使用convert命令。用下面的代碼,你可以得到你的圖像的尺寸:

// If you only need the width and height 
convert -auto-orient image.jpg -format %wx%h info: 

// If you want the same result as identify 
convert -auto-orient image.jpg info: