Add script to automatically rescale SVG images - important to export them to PNGs

This commit is contained in:
Pieter Vander Vennet 2022-01-06 20:39:59 +01:00
parent 7090a5ceb8
commit d4f5e1d238
8 changed files with 261 additions and 90 deletions

15
scripts/resizeSvg.sh Executable file
View file

@ -0,0 +1,15 @@
#! /bin/bash
# Requires `sudo apt-get install librsvg2-bin`
# $1 should be the file
resizeFile(){
PTH="$(dirname "${1}")"
FILE="$(basename "${1}")"
echo "Path is $PTH, name is $FILE"
svg-resizer -f -x 500 -y 500 -o /tmp/resized $1
# mv "/tmp/resized/$FILE" "$PTH"
}
export -f resizeFile
find . -name "*.svg" -exec bash -c 'resizeFile "$0"' {} \;