Skip to content

Instantly share code, notes, and snippets.

@dylanpinn
Created March 11, 2016 05:05
Show Gist options
  • Save dylanpinn/828ee0f5bae4c4c6e85a to your computer and use it in GitHub Desktop.
Save dylanpinn/828ee0f5bae4c4c6e85a to your computer and use it in GitHub Desktop.
Image density converter
#!/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