Skip to content

Instantly share code, notes, and snippets.

@kpping
Last active December 11, 2018 04:11
Show Gist options
  • Save kpping/9848b00a65469c7481529c70db587d92 to your computer and use it in GitHub Desktop.
Save kpping/9848b00a65469c7481529c70db587d92 to your computer and use it in GitHub Desktop.
Convert PNG to reduced quality JPG
#!/usr/bin/env bash
QUALITY=60 # 0 - 100
FILE_PNG="image.jpg" # in
FILE_JPG="image.png" # out
convert -strip -interlace Plane -quality $QUALITY $FILE_PNG $FILE_JPG
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment