forked from tTh/FloatImg
24 lines
450 B
Bash
24 lines
450 B
Bash
|
#!/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
|
||
|
|
||
|
# -----------------------------------------------------
|