Created
September 22, 2014 09:02
-
-
Save yatatsu/9196e845d1e1fd4c39b2 to your computer and use it in GitHub Desktop.
This file contains 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 | |
# According to https://developer.apple.com/LIBRARY/PRERELEASE/IOS/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html | |
# And Referring to https://gist.github.com/lexrus/1984984 | |
convert $1 -resize 180x180 [email protected] | |
convert $1 -resize 120x120 [email protected] | |
convert $1 -resize 152x152 [email protected] | |
convert $1 -resize 76x76 [email protected] | |
convert $1 -resize 120x120 [email protected] | |
convert $1 -resize 80x80 [email protected] | |
convert $1 -resize 40x40 [email protected] | |
convert $1 -resize 87x87 [email protected] | |
convert $1 -resize 58x58 [email protected] | |
convert $1 -resize 29x29 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment