Skip to content

Instantly share code, notes, and snippets.

@jasonm23
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonm23/23c730204cda13710c80 to your computer and use it in GitHub Desktop.
Save jasonm23/23c730204cda13710c80 to your computer and use it in GitHub Desktop.
# OSX specific bash function to make icon pngs
# for Images.xcassets/AppIcon.appiconset
# (ie. Current XCode App icon method.)
function makeIconPngs(){
for size in 16 32 128 256 512
do
retina=$(( $size * 2 ))
sips -Z $size $1 --out icon_${size}x${size}.png
sips -Z $retina $1 --out icon_${size}x${size}@2x.png
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment