有何軟體可以將數百張相片resize? - Linux

Table of Contents


大量圖檔可用 mogrify, 是imagemagick的一部分

用法如:

mogrify -resize 60% *.jpg
mogrify -resize 1024x1024 *.jpg

可加上 -path 參數避免原圖檔消失
這裡有較多範例: http://www.imagemagick.org/Usage/basics/#mogrify

十分好用的工具.

--

All Comments