Skip to content

Instantly share code, notes, and snippets.

@atilaromero
Last active March 9, 2020 11:50
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 atilaromero/0070ef60c241a119d0fe4ec1470bafab to your computer and use it in GitHub Desktop.
Save atilaromero/0070ef60c241a119d0fe4ec1470bafab to your computer and use it in GitHub Desktop.
#gimp: menu Image -> flatten image
find . -name '*.png' | while read i ; do echo $i ; convert -flatten +matte "$i" "$i"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment