forked from vanilla-music/vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-pngs.sh
executable file
·44 lines (38 loc) · 1.01 KB
/
generate-pngs.sh
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
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
# This script can be used to generate PNGs from the SVGs stored in orig/.
# For each SVG in orig/, PNGs will be created in the drawable directories
# for each DPI with the same name as the SVG. If the PNGs already exist
# and are newer than the SVG, they will not be recreated.
#
# Requires:
# - inkscape
# - imagemagick
# - optipng
gen() {
type=$1
path=$2
res=$3
dpi=$4
name=`basename "$path" .svgz`
png="app/src/main/res/$type-$res/$name.png"
if [ "$path" -nt "$png" -o ! -e "$png" ]; then
inkscape --without-gui --export-area-page --export-dpi=$dpi --export-png="$png" $path
echo
fi
}
for i in orig/drawable/*.svgz; do
gen drawable "$i" mdpi 96
gen drawable "$i" hdpi 144
gen drawable "$i" xhdpi 192
gen drawable "$i" xxhdpi 288
done
for i in orig/mipmap/*.svgz; do
gen mipmap "$i" mdpi 96
gen mipmap "$i" hdpi 144
gen mipmap "$i" xhdpi 192
gen mipmap "$i" xxhdpi 288
done
# GOOG tells us to use xxx-hdpi only for launcher icons
for i in orig/mipmap/ic*.svgz ; do
gen mipmap "$i" xxxhdpi 384
done