Created
April 29, 2011 16:54
-
-
Save langford/948613 to your computer and use it in GitHub Desktop.
Make other icons from 512x512
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/bash | |
export CONVERSIONAPP="/Applications/ImageMagick-6.5.8//bin/convert" | |
export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:/Applications/ImageMagick-6.5.8//lib" | |
export MAGICK_HOME="/Applications/ImageMagick-6.5.8/" | |
$CONVERSIONAPP SpecificArtAssets/icons/512x512.png -resize 57x57 GeneratedFiles/Icon.png | |
$CONVERSIONAPP SpecificArtAssets/icons/512x512.png -resize 114x114 GeneratedFiles/[email protected] | |
$CONVERSIONAPP SpecificArtAssets/icons/512x512.png -resize 72x72 GeneratedFiles/Icon-72.png | |
$CONVERSIONAPP SpecificArtAssets/icons/512x512.png -resize 29x29 GeneratedFiles/Icon-Small.png | |
$CONVERSIONAPP SpecificArtAssets/icons/512x512.png -resize 50x50 GeneratedFiles/Icon-Small-50.png | |
$CONVERSIONAPP SpecificArtAssets/icons/512x512.png -resize 58x58 GeneratedFiles/[email protected] | |
cp SpecificArtAssets/icons/512x512.png GeneratedFiles/iTunesArtwork |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment