Skip to content

Instantly share code, notes, and snippets.

@mtgto
Created August 12, 2014 01:30
Show Gist options
  • Save mtgto/8777f07dff6e3b128a89 to your computer and use it in GitHub Desktop.
Save mtgto/8777f07dff6e3b128a89 to your computer and use it in GitHub Desktop.
icon image generator for iOS. Before execute, you need to create 1024x1024 png.
#!/bin/sh
convert Icon.png -resize 29x -strip +set date:create +set date:modify Icon-29.png
convert Icon.png -resize 58x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 80x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 57x -strip +set date:create +set date:modify Icon-57.png
convert Icon.png -resize 114x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 120x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 29x -strip +set date:create +set date:modify Icon-29.png
convert Icon.png -resize 58x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 40x -strip +set date:create +set date:modify Icon-40.png
convert Icon.png -resize 50x -strip +set date:create +set date:modify Icon-50.png
convert Icon.png -resize 100x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 72x -strip +set date:create +set date:modify Icon-72.png
convert Icon.png -resize 144x -strip +set date:create +set date:modify [email protected]
convert Icon.png -resize 76x -strip +set date:create +set date:modify Icon-76.png
convert Icon.png -resize 152x -strip +set date:create +set date:modify [email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment