If you have a color PNG image with transparency don't do this:
gm mogrify -type grayscale image.png
as it will lose the alpha channel.
You can get a similar result by just desaturating it:
gm mogrify -modulate 100,0 image.png
Subscribe to:
Post Comments (Atom)
2 comments:
Thank you! Very important tips!
Post a Comment