linux下用命令修改图片像素

find ./ -name 'unchecked.png' -exec convert -resize 16x16 {} {} \;

在当前文件夹下把unchecked.png的像素改为16x16

find ./ -name '*.png'  -exec convert -resize 16x16 {} {} \; 

批量更改图片像素

posted on 2011-05-07 10:10  Allan GC  阅读(638)  评论(0编辑  收藏  举报

导航