Created
March 16, 2021 12:08
-
-
Save mhamilt/d831aa546a8b8a4e4960ddf213192184 to your computer and use it in GitHub Desktop.
Generate AppIcon Set with 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
filename=$(basename $1 .png) | |
for res in 1024 512 256 128 64 32 16 | |
do | |
convert $1 -resize "${res}x${res}" "${filename}-${res}.png" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment