Skip to content

Instantly share code, notes, and snippets.

@langford
Created April 29, 2011 16:54
Show Gist options
  • Save langford/948613 to your computer and use it in GitHub Desktop.
Save langford/948613 to your computer and use it in GitHub Desktop.
Make other icons from 512x512
#!/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/Icon@2x.png
$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/Icon-Small@2x.png
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