Replace Colors with ImageMagick
ImageMagick has a great utility called convert. It allows you to do many things, including replacing one color in an image with another.
This will relace all the black pixels in an image with a dark yellow color. This is only a small part of what ImageMagick utilities can do. I recommend downloading them all.
convert -fill #FFC232 -opaque #000000 inputfile outputfile
This will relace all the black pixels in an image with a dark yellow color. This is only a small part of what ImageMagick utilities can do. I recommend downloading them all.
0 Comments:
Post a Comment
<< Home