Created
March 11, 2016 05:05
-
-
Save dylanpinn/828ee0f5bae4c4c6e85a to your computer and use it in GitHub Desktop.
Image density converter
This file contains hidden or 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
#!/usr/bin/env bash | |
QUAL_HI=90 | |
QUAL_MID=50 | |
QUAL_LOW=20 | |
ORIG=hq2x.jpg | |
# Create 2x version. | |
convert original.jpg -quality $QUAL_HI hq2x.jpg | |
# Create 1x version. | |
convert hq2x.jpg -resize 50% hq1x.jpg | |
# Create compressed versions. | |
convert hq2x.jpg -quality $QUAL_MID lq2x.jpg | |
convert hq1x.jpg -quality $QUAL_MID lq1x.jpg | |
# Create very compressed versions. | |
convert hq2x.jpg -quality $QUAL_LOW ulq2x.jpg | |
convert hq1x.jpg -quality $QUAL_LOW ulq1x.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment