nice work done on Julia set

This commit is contained in:
tTh
2023-01-03 01:22:40 +01:00
parent 0e73e47272
commit b707b784bf
5 changed files with 109 additions and 10 deletions

27
Fraktalism/tagpicz.sh Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
#
# THIS IS JUST A QUICK'N'DIRTY HACK !
# DO NOT USE IT IN REAL LIFE !
#
set -e
SDIR="frames/spool/"
if [ $# -eq 1 ] ; then
SDIR="$1"
fi
for img in $SDIR/*.pnm
do
mogrify \
-gravity South-East \
-font Courier \
-pointsize 12 \
-fill Yellow \
-annotate +10+10 "tTh 2023" \
$img
echo "tagging " $img
done