Last active
December 28, 2015 02:08
-
-
Save desplesda/7425171 to your computer and use it in GitHub Desktop.
A quick little script to shrink down a large icon down to the various sizes needed on iOS. Note that small icons can get pretty blurry, so you should probably design those separately.
This file contains 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
ORIGINAL_ICON="Icon-1024.png" | |
convert $ORIGINAL_ICON -resize 512 Icon-512.png | |
convert $ORIGINAL_ICON -resize 76 Icon-76.png | |
convert $ORIGINAL_ICON -resize 152 [email protected] | |
convert $ORIGINAL_ICON -resize 72 Icon-72.png | |
convert $ORIGINAL_ICON -resize 144 [email protected] | |
convert $ORIGINAL_ICON -resize 60 Icon-60.png | |
convert $ORIGINAL_ICON -resize 120 [email protected] | |
convert $ORIGINAL_ICON -resize 57 Icon-57.png | |
convert $ORIGINAL_ICON -resize 114 [email protected] | |
convert $ORIGINAL_ICON -resize 50 Icon-50.png | |
convert $ORIGINAL_ICON -resize 100 [email protected] | |
convert $ORIGINAL_ICON -resize 40 Icon-40.png | |
convert $ORIGINAL_ICON -resize 80 [email protected] | |
convert $ORIGINAL_ICON -resize 29 Icon-29.png | |
convert $ORIGINAL_ICON -resize 58 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment