++darken image

This commit is contained in:
Nico Schottelius 2021-02-28 16:32:44 +01:00
parent cf61e716f3
commit dc726cf468
1 changed files with 5 additions and 0 deletions

5
darken_image.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for i in "$@"; do
convert $i -fill black -colorize 50% dark-${i}
done