Created
September 30, 2015 08:52
-
-
Save ftp27/f5c69c58d32e257e194c to your computer and use it in GitHub Desktop.
Resize screenshots for set of iPhone screen sizes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
convert -resize 640x960! $1 "3.5-"$1 | |
convert -resize 640x1136! $1 "4-"$1 | |
convert -resize 750x1334! $1 "4.7-"$1 | |
convert -resize 1242x2208! $1 "5.5-"$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment