Skip to content

Instantly share code, notes, and snippets.

@demonnico
Created May 5, 2014 09:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • 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 Icon-Small@2x.png
convert $1 -resize 40x40 Icon-40.png
convert $1 -resize 80x80 Icon-40@2x.png
convert $1 -resize 57x57 Icon.png
convert $1 -resize 114x114 Icon@2x.png
convert $1 -resize 120x120 Icon-60@2x.png
convert $1 -resize 76x76 Icon-76.png
convert $1 -resize 152x152 Icon-76@2x.png
echo It\'s finished.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment