ImageMagick の mogrifyコマンドを使う
解像度一括変換例
| 
					 1  | 
						$ mogrify -resize x240 *.png  | 
					
高さ240pxに解像度を一括変換する。
- -resize : resize the image (box filter)
 - -scale : scale the image (averaged pixels)
 - -sample : scale image with pixel sampling (補間なし)
 
解像度一括変換例
| 
					 1  | 
						$ mogrify -format png *.jpg  | 
					
JPEGファイルをPNGファイルへ一括変換する。