2014-04-14 2 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: 
관련 문제