doc + demo

This commit is contained in:
tth
2021-05-29 13:01:32 +02:00
parent 17955bd303
commit 5a90dce59d
3 changed files with 30 additions and 3 deletions

13
scripts/demo-mkfimg.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
echo "=== make a lot of float img ==="
MKFIMG="../tools/mkfimg"
SIZE=" 640x480 "
for type in $(${MKFIMG} -L)
do
picname="/tmp/${type}.fimg"
echo $picname
${MKFIMG} -v -t $type $picname $SIZE
done