Created
April 9, 2014 13:05
-
-
Save s-shin/10267974 to your computer and use it in GitHub Desktop.
icon generator for iOS 7 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
| #!/usr/bin/env bash | |
| convert $1 -geometry 40x40 Icon-40.png | |
| convert $1 -geometry 80x80 [email protected] | |
| convert $1 -geometry 60x60 Icon-60.png | |
| convert $1 -geometry 120x120 [email protected] | |
| convert $1 -geometry 72x72 Icon-72.png | |
| convert $1 -geometry 144x144 [email protected] | |
| convert $1 -geometry 76x76 Icon-76.png | |
| convert $1 -geometry 152x152 [email protected] | |
| convert $1 -geometry 50x50 Icon-Small-50.png | |
| convert $1 -geometry 100x100 [email protected] | |
| convert $1 -geometry 29x29 Icon-Small.png | |
| convert $1 -geometry 58x58 [email protected] | |
| convert $1 -geometry 57x57 Icon.png | |
| convert $1 -geometry 114x114 [email protected] | |
| convert $1 -geometry 512x512 iTunesArtwork.png | |
| convert $1 -geometry 1024x1024 [email protected] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment