Skip to content

Instantly share code, notes, and snippets.

@mpvosseller
Created February 12, 2018 18:31
Show Gist options
  • Save mpvosseller/b7e74e350ec7f7d847615aa35a4d8cf2 to your computer and use it in GitHub Desktop.
Save mpvosseller/b7e74e350ec7f7d847615aa35a4d8cf2 to your computer and use it in GitHub Desktop.
Given a 1024x1024 iOS app icon this script creates all the other requires sizes
#!/bin/sh
convert Icon-1024.png -resize 20x20 Icon-20.png
convert Icon-1024.png -resize 40x40 [email protected]
convert Icon-1024.png -resize 60x60 [email protected]
convert Icon-1024.png -resize 29x29 Icon-29.png
convert Icon-1024.png -resize 58x58 [email protected]
convert Icon-1024.png -resize 87x87 [email protected]
convert Icon-1024.png -resize 40x40 Icon-40.png
convert Icon-1024.png -resize 80x80 [email protected]
convert Icon-1024.png -resize 76x76 Icon-76.png
convert Icon-1024.png -resize 152x152 [email protected]
convert Icon-1024.png -resize 167x167 [email protected]
convert Icon-1024.png -resize 120x120 [email protected]
convert Icon-1024.png -resize 120x120 [email protected]
convert Icon-1024.png -resize 180x180 [email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment