Last active
August 29, 2015 14:06
-
-
Save maxkomarychev/09cd4a3054f590485b4e to your computer and use it in GitHub Desktop.
Create icons for iOS universal application
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 -resize 29 $1 PhoneSpot29.png | |
| convert -resize 58 $1 PhoneSpot29@2x.png | |
| convert -resize 87 $1 PhoneSpot29@3x.png | |
| convert -resize 80 $1 PhoneSpot40@2x.png | |
| convert -resize 120 $1 PhoneSpot40@3x.png | |
| convert -resize 57 $1 PhoneApp57.png | |
| convert -resize 114 $1 PhoneApp57@2x.png | |
| convert -resize 120 $1 PhoneApp60@2x.png | |
| convert -resize 180 $1 PhoneApp60@3x.png | |
| convert -resize 29 $1 PadSettings29.png | |
| convert -resize 58 $1 PadSettings29@2x.png | |
| convert -resize 40 $1 PadSpot40.png | |
| convert -resize 80 $1 PadSpot40@2x.png | |
| convert -resize 50 $1 PadSpot50.png | |
| convert -resize 100 $1 PadSpot50@2x.png | |
| convert -resize 72 $1 PadApp72.png | |
| convert -resize 144 $1 PadApp72@2x.png | |
| convert -resize 76 $1 PadApp76.png | |
| convert -resize 152 $1 PadApp76@2x.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment