それマグで!

知識はカップより、マグでゆっくり頂きます。 takuya_1stのブログ

習慣に早くから配慮した者は、 おそらく人生の実りも大きい。

JPEGやPNGの画像サイズを取得するコマンド。縦横ピクセルサイズをコマンドで取得

ImageMagickのidentify コマンドが一覧楽そう

identify -format "%wx%h "

takuya@n005:~/Desktop$ identify -format '%wx%h\n' test.PNG
428x147

縦横ピクセルサイズをコマンドで取得

これを JSON で取るとしたら

identify -format "{width:%w, height:%h}\n" test.jpg

画像の縦横比を調べるには

identify -format "%[fx:w/h]"  test.jpg

または

identify -format "%[fx:h/w]"  test.jpg


identify コマンドについて

http://dqn.sakusakutto.jp/2009/02/imagemagick.html
http://takuya-1st.hatenablog.jp/entry/2013/03/20/220112