i.e. some stuff and junk about Python, Perl, Matlab, Ruby, Mac X, Linux, Solaris, ...
Saturday, June 13, 2009
imagemagick: change color image to gray
convert -type Grayscale old.tiff new.tiffor to overiate original imagemogrify -type Grayscale old.tiff or to convert all images in a current folder:for f in *.tiff; do mogrify -type Grayscale $f ;done