Skip to content

Instantly share code, notes, and snippets.

@vr000m
Created November 16, 2013 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vr000m/7502737 to your computer and use it in GitHub Desktop.
Save vr000m/7502737 to your computer and use it in GitHub Desktop.
converting blacks and greys to white (ImageMagick)
$ convert title.png -fill "white" -opaque "#1a1a1a" title-inv.png
$ convert title-inv.png -fill "white" -opaque "#000000" -fuzz 10% title-inv2.png
@vr000m
Copy link
Author

vr000m commented Nov 16, 2013

could have used -fuzz xx% instead of two commands

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment