Skip to content

Instantly share code, notes, and snippets.

@matthewmayer
Last active August 22, 2017 06:47
Show Gist options
  • Save matthewmayer/2651829 to your computer and use it in GitHub Desktop.
Save matthewmayer/2651829 to your computer and use it in GitHub Desktop.
Create all sizes of icon for a Universal iOS app - requires imagemagick
#iphone only
convert -resize 58x58 1024.png 58.png
convert -resize 87x87 1024.png 87.png
convert -resize 80x80 1024.png 80.png
convert -resize 120x120 1024.png 120.png
convert -resize 180x180 1024.png 180.png
convert -resize 40x40 1024.png 40.png
convert -resize 60x60 1024.png 60.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment