Fixed 2k and 4k display issues

This commit is contained in:
vinceliuice
2019-10-23 20:32:32 +08:00
parent 9b431cae26
commit a7b0d4b24c
412 changed files with 722 additions and 1440 deletions

View File

@@ -0,0 +1,24 @@
#! /bin/bash
INKSCAPE="/usr/bin/inkscape"
INDEX="select.txt"
ASSETS_DIR="select-1080p"
SRC_FILE="select.svg"
install -d $ASSETS_DIR
for i in `cat $INDEX`
do
if [ -f $ASSETS_DIR/$i.png ]; then
echo $ASSETS_DIR/$i.png exists.
else
echo
echo Rendering $ASSETS_DIR/$i.png
$INKSCAPE --export-id=$i \
--export-id-only \
--export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null
fi
done
exit 0