Skip to content

Instantly share code, notes, and snippets.

@hanneshal
Created January 13, 2014 21:37
Show Gist options
  • Save hanneshal/8408662 to your computer and use it in GitHub Desktop.
Save hanneshal/8408662 to your computer and use it in GitHub Desktop.
Mac App Icon Sizes
mkdir AppName.iconset
sips -z 16 16 Logo_Big.png --out AppName.iconset/icon_16x16.png
sips -z 32 32 Logo_Big.png --out AppName.iconset/icon_16x16@2x.png
sips -z 32 32 Logo_Big.png --out AppName.iconset/icon_32x32.png
sips -z 64 64 Logo_Big.png --out AppName.iconset/icon_32x32@2x.png
sips -z 128 128 Logo_Big.png --out AppName.iconset/icon_128x128.png
sips -z 256 256 Logo_Big.png --out AppName.iconset/icon_128x128@2x.png
sips -z 256 256 Logo_Big.png --out AppName.iconset/icon_256x256.png
sips -z 512 512 Logo_Big.png --out AppName.iconset/icon_256x256@2x.png
sips -z 512 512 Logo_Big.png --out AppName.iconset/icon_512x512.png
cp Logo_Big.png AppName.iconset/icon_512x512@2x.png
iconutil -c icns AppName.iconset
rm -R AppName.iconset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment