blob: fcfb0b95f4cc2a20c6cd241a17c219b1fb52258d (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
magick \
-size 127x128 xc:"${3:-white}" \
"$1" -geometry x74+30+3 -composite \
\( thoughts/mask.png -channel a -negate \) -compose copy-opacity -composite \
thoughts/overlay.png -compose srcover -composite \
"$2"
|