
Once again AI export of radial gradients causes problems for Chrome. What should have been a white-to-transparent gradient became a white-to-black 90%-to-100% opaque gradient. So hand-edited the SVG to remove the black orb floating in front of their faces... pity. Since this was done using guesswork these are not an exact match for the png versions, but they seem close enough.
49 lines
880 B
Bash
Executable File
49 lines
880 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR=""
|
|
DST_DIR=""
|
|
|
|
SCOUR_ARGS="--strip-xml-prolog --enable-viewboxing --enable-id-stripping --enable-comment-stripping --shorten-ids --no-line-breaks --strip-xml-space"
|
|
|
|
while [ $# != 0 ]; do
|
|
case "$1" in
|
|
-s) SRC_DIR=${2}
|
|
shift
|
|
shift
|
|
;;
|
|
-d) DST_DIR=${2}
|
|
shift
|
|
shift
|
|
;;
|
|
*) echo "unrecognized arg $1"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$SRC_DIR" ]; then
|
|
echo "missing source directory"
|
|
exit 1;
|
|
fi
|
|
|
|
if [ ! -d "$SRC_DIR" ]; then
|
|
echo "source dirctory '$SRC_DIR' does not exist"
|
|
exit 1;
|
|
fi
|
|
|
|
if [ -z "$DST_DIR" ]; then
|
|
echo "missing destination directory"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$DST_DIR" ]; then
|
|
echo "creating destination directory '$DST_DIR'"
|
|
mkdir -p "$DST_DIR"
|
|
fi
|
|
|
|
for file in "$SRC_DIR"/*.svg; do
|
|
dst="${file##*/}"
|
|
scour $SCOUR_ARGS -i "$file" -o "$DST_DIR/$dst"
|
|
done
|
|
|