c78c0f03a1
the viewBox of the SVG document to initialize the viewBox of the graphic. Avoids scaling problems with the symbols of the skins, that often rely on having a viewBox.
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "Usage $0 file ..."
|
|
exit 1
|
|
fi
|
|
|
|
for file in $*
|
|
do
|
|
base=`basename -s .svg $file`
|
|
echo "${base}.svg -> qvg/${base}.qvg"
|
|
svg2qvg ${base}.svg qvg/${base}.qvg
|
|
done
|
|
|
|
exit $status
|