This commit is contained in:
2026-04-09 05:03:34 -04:00
parent 464377e03a
commit f291435905
123 changed files with 2 additions and 10569 deletions

9
art/cards/sepiaone.sh Normal file
View File

@@ -0,0 +1,9 @@
# Usage: bash fixone.sh input.png 60,40
input="$1"
blend_ratio="$2"
sepia="${input%.png}_sepia.png"
output="${input%.png}_blend.png"
# Step 2: Blend sepia with original using specified ratio
magick.exe convert "$sepia" "$input" -compose blend -define compose:args=$blend_ratio -composite "$output"