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 [email protected] | |
convert -resize 87 $1 [email protected] | |
convert -resize 80 $1 [email protected] | |
convert -resize 120 $1 [email protected] | |
convert -resize 57 $1 PhoneApp57.png | |
convert -resize 114 $1 [email protected] | |
convert -resize 120 $1 [email protected] | |
convert -resize 180 $1 [email protected] | |
convert -resize 29 $1 PadSettings29.png | |
convert -resize 58 $1 [email protected] | |
convert -resize 40 $1 PadSpot40.png | |
convert -resize 80 $1 [email protected] | |
convert -resize 50 $1 PadSpot50.png | |
convert -resize 100 $1 [email protected] | |
convert -resize 72 $1 PadApp72.png | |
convert -resize 144 $1 [email protected] | |
convert -resize 76 $1 PadApp76.png | |
convert -resize 152 $1 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment