FloatImg/Fonderie/essai.sh

23 lines
388 B
Bash
Raw Normal View History

2020-12-03 05:24:54 +11:00
#!/bin/bash
2020-12-07 14:45:51 +11:00
FILTRES="5:6:13 2:2 5:9:8 4:25 8:13:13:7 10:1 25:25:25:25"
rm /tmp/fstack*.png
2020-12-03 05:24:54 +11:00
2020-12-05 09:14:44 +11:00
for F in $FILTRES
do
2020-12-03 05:24:54 +11:00
2020-12-07 14:45:51 +11:00
I="/tmp/fstack-"$F".png"
2020-12-05 09:14:44 +11:00
echo ; echo $I
./t -F $F
txt=$(printf "[%-10s]" $F)
2020-12-07 14:45:51 +11:00
convert foo.png -pointsize 28 -kerning 0 \
-fill Gray80 -undercolor Gray20 \
2020-12-05 09:14:44 +11:00
-font Courier-Bold \
2020-12-07 14:45:51 +11:00
-annotate +0+25 "$txt" \
2020-12-05 09:14:44 +11:00
$I
2020-12-03 05:24:54 +11:00
2020-12-05 09:14:44 +11:00
done
2020-12-07 14:45:51 +11:00
convert -delay 150 /tmp/fstack*.png foo.gif