diff options
Diffstat (limited to 'tools/fade.sh')
-rwxr-xr-x | tools/fade.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/fade.sh b/tools/fade.sh new file mode 100755 index 0000000..3f1f580 --- /dev/null +++ b/tools/fade.sh @@ -0,0 +1,25 @@ +#!/bin/bash +count=0 +file="NUUG-logo-2-150-2.png" + +echo "Generating intro frame images" + +# Generate 50 fade-in frames +for i in {1..50}; do + count=`expr $count + 1` + echo "Generating intro frame image $file ($count)" +# convert -fill black -colorize $i% NUUG-logo-2-150-2.png test-$i.png +done + +for i in {1..50}; do + count=`expr $count + 1` + echo "Generating intro frame image $file ($count)" + #cp 51 $count +done + +for i in {1..50}; do +count=`expr $count + 1` +echo "Generating intro frame image $file ($count)" +#cp 51 $count +done + |