Created
February 12, 2018 18:31
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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