Skip to content

Instantly share code, notes, and snippets.

@kanemu
Created May 26, 2011 01:03
Show Gist options
  • Save kanemu/992340 to your computer and use it in GitHub Desktop.
Save kanemu/992340 to your computer and use it in GitHub Desktop.
[shell]iPhone用アイコン生成
#!/bin/bash
sips -s format png -z 512 512 $1 --out iTunesArtwork
sips -s format png -z 57 57 $1 --out Icon.png
sips -s format png -z 114 114 $1 --out Icon@2x.png
sips -s format png -z 72 72 $1 --out Icon-72.png
sips -s format png -z 29 29 $1 --out Icon-Small.png
sips -s format png -z 50 50 $1 --out Icon-Small-50.png
sips -s format png -z 58 58 $1 --out Icon-Small@2x.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment