Skip to content

Instantly share code, notes, and snippets.

@gotev
Created June 28, 2018 16:36
Show Gist options
  • Save gotev/70b04663a2cdb834bc41da7d599f6ebe to your computer and use it in GitHub Desktop.
Save gotev/70b04663a2cdb834bc41da7d599f6ebe to your computer and use it in GitHub Desktop.
Remove alpha channel from PNGs in a directory
for file in $(ls *.png); do convert "$file" -alpha remove -alpha off "$file"; done
@gotev
Copy link
Author

gotev commented Jun 28, 2018

You need imagemagick. On a mac, you can install it with brew:

brew install imagemagick

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