Remove the comment about translating block titles
[drupal_ipv6_greeter.git] / images / convert.sh
1 #!/bin/sh
2
3 set -e
4 set -x
5
6 SIZE="48x48"
7 COLORS=64
8
9 find svg -name "*.svg" |
10 while read file;
11 do
12   PNGFILE="$(basename "$file" .svg).png"
13   convert -background transparent -resize $SIZE "$file" "$PNGFILE"
14
15   PNGINDEXFILE="$(basename "$file" .svg)-fs8.png"
16   rm -f "$PNGINDEXFILE"
17   pngquant $COLORS "$PNGFILE"
18   mv "$PNGINDEXFILE" "$PNGFILE"
19 done