Search found 1 match
- 2015-03-23T08:42:13-07:00
- Forum: Users
- Topic: Convert one color to another including anti-aliased colors but keeping background
- Replies: 3
- Views: 1795
Convert one color to another including anti-aliased colors but keeping background
Hi! I have several png images (icons for my app) that have different colors and one main color (#1A96E5). I want to replace #1A96E5 everywhere to another color, red (#FF0000). I do it using such command: mogrify -path /mypath -format png -alpha off -fill "#FF0000" -opaque "#1A96E5" -alpha on *.png ...