Skip to content

Instantly share code, notes, and snippets.

@alvesjtiago
Last active August 29, 2015 14:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alvesjtiago/e2c61eb288c9d488a8cc to your computer and use it in GitHub Desktop.
Save alvesjtiago/e2c61eb288c9d488a8cc to your computer and use it in GitHub Desktop.
Remove alpha channel and transparencies from images for AppStore screenshots.
# Run the following code on a folder that contains all your images
for f in *.png; do convert "$f" -background white -alpha remove -flatten -alpha off "$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment