find ./ -name '*.bmp' -exec convert -crop nxn+x+x {} {}.gif \;
find ./ -name '*.gif' -exec convert -resize 100x100 {} {}.r.gif \;
だと結果のgifがなんか変になる。
(サイズが91x100になるし、ブラウザで見ると141x178とかになってる)
find ./ -name '*.bmp' -exec convert -crop 100x100+n+n -resize nxn {} {}.gif \;
だと正常に行った。
でも-resizeのサイズ計算が面倒だなぁ。。。
find ./ -name '*.gif' -exec convert -resize 100x100 {} {}.r.gif \;
だと結果のgifがなんか変になる。
(サイズが91x100になるし、ブラウザで見ると141x178とかになってる)
find ./ -name '*.bmp' -exec convert -crop 100x100+n+n -resize nxn {} {}.gif \;
だと正常に行った。
でも-resizeのサイズ計算が面倒だなぁ。。。