Skip to content

Instantly share code, notes, and snippets.

@dtroode
Created June 24, 2022 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dtroode/7e5ea3e37213270d767f4b1ecc15dcfe to your computer and use it in GitHub Desktop.
Save dtroode/7e5ea3e37213270d767f4b1ecc15dcfe to your computer and use it in GitHub Desktop.
Small script to convert screenshots and pictures from my iPhone for my portfolio website.
#!/bin/bash
mogrify -format png (*.heic|*.HEIC)
npx @squoosh/cli --mozjpeg '{}' -d squoosh *.png
npx @squoosh/cli --resize '{"width": 1000}' --mozjpeg '{}' -s "-1000" -d squoosh/1000 *.png
npx @squoosh/cli --resize '{"width": 700}' --mozjpeg '{}' -s "-700" -d squoosh/700 *.png
npx @squoosh/cli --avif '{}' -d squoosh *.png
npx @squoosh/cli --resize '{"width": 1000}' --avif '{}' -s "-1000" -d squoosh/1000 *.png
npx @squoosh/cli --resize '{"width": 700}' --avif '{}' -s "-700" -d squoosh/700 *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment