Skip to content

Instantly share code, notes, and snippets.

@s-shin
Created April 9, 2014 13:05
Show Gist options
  • Select an option

  • Save s-shin/10267974 to your computer and use it in GitHub Desktop.

Select an option

Save s-shin/10267974 to your computer and use it in GitHub Desktop.
icon generator for iOS 7 with ImageMagick.
#!/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