Skip to content

Instantly share code, notes, and snippets.

@demonnico
Created May 5, 2014 09:10
Show Gist options
  • Save demonnico/8b3778a092150b30c3fe to your computer and use it in GitHub Desktop.
Save demonnico/8b3778a092150b30c3fe to your computer and use it in GitHub Desktop.
Make it easy to create all the icons we needed in iOS application.
#imagemagick is needed http://www.imagemagick.org/
#reference: http://stackoverflow.com/questions/18663013/icon-file-names-ios-7
convert $1 -resize 29x29 Icon-Small.png
convert $1 -resize 58x58 [email protected]
convert $1 -resize 40x40 Icon-40.png
convert $1 -resize 80x80 [email protected]
convert $1 -resize 57x57 Icon.png
convert $1 -resize 114x114 [email protected]
convert $1 -resize 120x120 [email protected]
convert $1 -resize 76x76 Icon-76.png
convert $1 -resize 152x152 [email protected]
echo It\'s finished.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment