Skip to content

Instantly share code, notes, and snippets.

@marcuswestin
Created August 26, 2014 03:25
Show Gist options
  • Save marcuswestin/3ad9883d860692f2be0c to your computer and use it in GitHub Desktop.
Save marcuswestin/3ad9883d860692f2be0c to your computer and use it in GitHub Desktop.
Generate iOS app icons from a single source
mkdir -p build
sips -Z 58 --out build/[email protected] original.png
sips -Z 80 --out build/[email protected] original.png
sips -Z 120 --out build/[email protected] original.png
sips -Z 58 --out build/[email protected] original.png
sips -Z 40 --out build/iPadSpotlight-40x40.png original.png
sips -Z 80 --out build/[email protected] original.png
sips -Z 76 --out build/iPadApp-76x76.png original.png
sips -Z 152 --out build/[email protected] original.png
mv build/*.png App-name/App-name/Images.xcassets/AppIcon.appiconset
rmdir build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment