FloatImg/Fonderie/essai.sh

27 lines
368 B
Bash
Raw Normal View History

2020-12-02 19:24:54 +01:00
#!/bin/bash
2020-12-04 23:14:44 +01:00
FILTRES="5:6:13 2 5:6:8 4:25 8:13:13:7 10:1 25:25:25"
2020-12-02 19:24:54 +01:00
2020-12-04 23:14:44 +01:00
for F in $FILTRES
do
2020-12-02 19:24:54 +01:00
2020-12-04 23:14:44 +01:00
I="/tmp/fstack"$F".png"
echo ; echo $I
./t -F $F
txt=$(printf "[%-10s]" $F)
convert foo.png -pointsize 32 -kerning 0 \
-fill Orange -undercolor Gray20 \
-font Courier-Bold \
-annotate +20+40 "$txt" \
$I
2020-12-02 19:24:54 +01:00
2020-12-04 23:14:44 +01:00
done
convert -delay 100 /tmp/fstack*.png foo.gif
2020-12-02 19:24:54 +01:00