Skip to content

Instantly share code, notes, and snippets.

@rivenvirus
Forked from knugie/jpg_to_2048.sh
Created March 22, 2017 05:39
Show Gist options
  • Save rivenvirus/f6c6389c188576909f4027371a5b43e8 to your computer and use it in GitHub Desktop.
Save rivenvirus/f6c6389c188576909f4027371a5b43e8 to your computer and use it in GitHub Desktop.
resize and optimize JPEG images to box-fit 2048x2048 pixels with 80% JPEG quality
#! /usr/bin/env bash
# brew install imagemagick
# brew install jpegoptim
mkdir 2048
for image in *.jpg; do
convert $image -resize 2048x2048\> ./2048/$image
jpegoptim --strip-all -q --max=80 ./2048/$image
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment