green_to_apha improvement

This commit is contained in:
Jenny 2025-01-10 21:33:02 +01:00
parent 3a47e9954c
commit 33ec0f816a
Signed by: Jenny
GPG Key ID: 2072A14E40940632

View File

@ -1,3 +1,6 @@
#!/bin/bash
magick "$1" -transparent "#00ff00" "$1"
for file in "$1"/*.png; do
echo "$file"
magick "$file" -transparent "#00ff00" "$file"
done