Tag Archives: convert

png convert to gif script

本来要用gda,,结果发现gdal不支持多波段转换。 只好使用Imagemagick,先安装: apt-get install imagemagick 脚本内容: #!/bins/sh for i in *.gif; do echo “convert $i to ${i%.png}.gif….”; convert $i ${i%.png}.gif ; done exit 1;

Posted in Linux | Tagged , , | Leave a comment