Skip to content

Instantly share code, notes, and snippets.

@klrkdekira
Created May 8, 2014 08:13
Show Gist options
  • Save klrkdekira/4b01976ef3185926bc3c to your computer and use it in GitHub Desktop.
Save klrkdekira/4b01976ef3185926bc3c to your computer and use it in GitHub Desktop.
IOS splash resizer (ImageMagick)
#!/bin/bash
f=$(pwd)
convert "${f}/${1}" -resize 320x480 "${f}/Default~iphone.png"
convert "${f}/${1}" -resize 640x960 "${f}/Default@2x~iphone.png"
convert "${f}/${1}" -resize 640x1136 "${f}/Default-568h@2x~iphone.png"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment