Skip to content

Instantly share code, notes, and snippets.

@henryw374
Created March 20, 2017 15:02
Show Gist options
  • Select an option

  • Save henryw374/f79cf4310eae0fc08e55e540834e9ae2 to your computer and use it in GitHub Desktop.

Select an option

Save henryw374/f79cf4310eae0fc08e55e540834e9ae2 to your computer and use it in GitHub Desktop.
ios asset generator catalog creator
#!/usr/bin/env bash
; brew install imagemagick if you haven't already
convert -resize 167x167 $ ic_launcher-19.png;
convert -resize 152x152 $ ic_launcher-18.png;
convert -resize 76x76 $ ic_launcher-17.png;
convert -resize 144x144 $ ic_launcher-16.png
convert -resize 72x72 $ ic_launcher-15.png;
convert -resize 100x100 $ ic_launcher-14.png;
convert -resize 50x50 $ ic_launcher-13.png;
convert -resize 80x80 $ ic_launcher-12.png;
convert -resize 40x40 $ ic_launcher-11.png;
convert -resize 58x58 $ ic_launcher-10.png;
convert -resize 29x29 $ ic_launcher-9.png;
convert -resize 180x180 $ ic_launcher-8.png;
convert -resize 120x120 $ ic_launcher-7.png;
convert -resize 120x120 $ ic_launcher-6.png;
convert -resize 80x80 $ ic_launcher-5.png;
convert -resize 87x87 $ ic_launcher-4.png;
convert -resize 58x58 $ ic_launcher-3.png;
convert -resize 29x29 $ ic_launcher-2.png;
convert -resize 114x114 $ ic_launcher-1.png;
convert -resize 57x57 $ ic_launcher.png;
convert -resize 40x40 $ ic_notification-3.png;
convert -resize 20x20 $ ic_notification-2.png;
convert -resize 60x60 $ ic_notification-1.png;
convert -resize 40x40 $ ic_notification.png;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment