14 lines
643 B
Bash
14 lines
643 B
Bash
|
|
for file in \
|
||
|
|
balance.png beast.png bricklayer.png comet.png cripple.png donjon.png euryale.png fates.png flames.png fool.png \
|
||
|
|
gem.png idiot.png jester.png key.png knight.png leper.png moon.png owl.png rogue.png ruin.png skull.png \
|
||
|
|
star.png sun.png talons.png throne.png tiger.png vizier.png void.png
|
||
|
|
do
|
||
|
|
sepia="${file%.png}_sepia.png"
|
||
|
|
blend="${file%.png}_blend.png"
|
||
|
|
|
||
|
|
# Step 1: Create rich brown sepia version using grayscale + fill + tint
|
||
|
|
# magick.exe convert "$file" -colorspace Gray -fill "#704214" -tint 80 "$sepia"
|
||
|
|
|
||
|
|
magick.exe convert "$sepia" "$file" -compose blend -define compose:args=40,60 -composite "$blend"
|
||
|
|
done
|