Created
November 16, 2013 17:19
-
-
Save vr000m/7502737 to your computer and use it in GitHub Desktop.
converting blacks and greys to white (ImageMagick)
This file contains hidden or 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
$ convert title.png -fill "white" -opaque "#1a1a1a" title-inv.png | |
$ convert title-inv.png -fill "white" -opaque "#000000" -fuzz 10% title-inv2.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
could have used -fuzz xx% instead of two commands