Skip to content

Instantly share code, notes, and snippets.

@kane-thornwyrd
Created May 8, 2022 07:18
Show Gist options
  • Save kane-thornwyrd/2893f4ab0755f14e11edeed86cc4712b to your computer and use it in GitHub Desktop.
Save kane-thornwyrd/2893f4ab0755f14e11edeed86cc4712b to your computer and use it in GitHub Desktop.
Recolor images
#! /bin/sh -e
##
# Usage:
# $ batchchangecolor.sh "*.png" "#ff0000" hover
##
for image in $1
do
convert "$image" +level-colors transparent,"$2" "${image%.*}.$3.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment