1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00
matomo-icons/flags.sh
2017-01-24 16:08:41 +01:00

21 lines
627 B
Bash
Executable file

#!/bin/bash
set -x
height=48
targetDir="dist/UserCountry/images/flags/"
if [ ! -d "$targetDir" ]
then
mkdir -p "$targetDir"
fi
for i in src/UserCountry/images/flags/*.svg; do
echo "$i"
origFilename=$(basename "$i")
code=${origFilename%.*}
distFile="${targetDir}/${code}.png"
echo "$distFile"
inkscape -f "$i" -h $height -e "$distFile"
pngquant -f --ext .png -s 1 --skip-if-larger --quality 70-95 "$distFile"
done
inkscape -f "unk.flag.svg" -h $height -e "dist/UserCountry/images/flags/xx.png"
pngquant -f --ext .png -s 1 --skip-if-larger --quality 70-95 "dist/UserCountry/images/flags/xx.png"