Skip to content

Instantly share code, notes, and snippets.

@mhamilt
Created March 16, 2021 12:08
Show Gist options
  • Save mhamilt/d831aa546a8b8a4e4960ddf213192184 to your computer and use it in GitHub Desktop.
Save mhamilt/d831aa546a8b8a4e4960ddf213192184 to your computer and use it in GitHub Desktop.
Generate AppIcon Set with ImageMagick
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