summaryrefslogtreecommitdiffstats
path: root/src/demos/es2/perftst/data/gif2tgas.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/es2/perftst/data/gif2tgas.sh')
-rw-r--r--src/demos/es2/perftst/data/gif2tgas.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/demos/es2/perftst/data/gif2tgas.sh b/src/demos/es2/perftst/data/gif2tgas.sh
new file mode 100644
index 0000000..2fd184b
--- /dev/null
+++ b/src/demos/es2/perftst/data/gif2tgas.sh
@@ -0,0 +1,28 @@
+#! /bin/sh
+
+rm -rf tmp
+mkdir -p tmp
+
+function gif2tga()
+{
+ bname=$1
+ shift
+ images=$1
+ shift
+ xysize=$1
+ shift
+
+ i=1 ;
+ while [ $i -le $images ] ; do
+ giftopnm -image $i $bname.gif > tmp/$bname.$i.pnm
+ pamscale -xsize=$xysize -ysize=$xysize tmp/$bname.$i.pnm > tmp/$bname.$xysize"x"$xysize.$i.pam
+ pamtotga -rgb -norle tmp/$bname.$xysize"x"$xysize.$i.pam > $bname.$xysize"x"$xysize.$i.tga
+ let i=$i+1
+ done
+}
+
+gif2tga bob2 33 64
+gif2tga bob2 33 128
+gif2tga bob2 33 256
+gif2tga bob2 33 512
+