rotate90 integrated in fimgfx

This commit is contained in:
tonton Th
2020-03-26 09:12:25 +01:00
parent a600cbbf70
commit 14256b1476
5 changed files with 62 additions and 24 deletions

23
tools/essai.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
#
# essai des differents outils
#
# -----------------------------------------------------
TMPF="tmp.fimg"
# -----------------------------------------------------
function essai_rot90
{
echo "=== " $0 " ==="
./mkfimg -v -t hdeg $TMPF 800 600
./fimg2png -v $TMPF foo.png
./fimgfx -v rot90 $TMPF bar.fimg
}
# -----------------------------------------------------
essai_rot90
# -----------------------------------------------------