Created
October 25, 2012 15:50
-
-
Save johno/3953555 to your computer and use it in GitHub Desktop.
The power of ImageMagick...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in $newdir/* ; do | |
convert $file -quantize GRAY -negate `echo $file | sed 's/.png/-white.png/'` | |
convert `echo $file | sed 's/.png/-white.png/'` -fuzz 70% -fill '#0398d6' -opaque white `echo $file | sed 's/.png/-blue.png/'` | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment