blob: d53b829585e0bea18fc5f8a7ce9634a36ed59464 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
source ./shakeoffsets.sh
declare -a shakeOffsets
getShakeOffsets shakeOffsets
mkdir -p export_tmp
rm -f export_tmp/*
counter=1
while [ $counter -le 75 ]
do
offset=${shakeOffsets[counter-1]}
file=`printf "export_tmp/%s.png" $counter`
inkscape -z -e $file -a $offset "blobfoxhyperowo.svg"
((counter++))
done
declare -a args
counter=1
while [ $counter -le 75 ]
do
file=`printf "export_tmp/%s.png" $counter`
args+=($file 1:50)
((counter++))
done
apngasm -o export/ablobfoxhyperowo.png ${args[@]}
rm -f export_tmp/*
|