843f0ec6ad
My suggestion for further SVG optimiztion - as mentioned in #5229 Signed-off-by: Marin Treselj <marin@pixelipo.com>
20 lines
477 B
Bash
Executable file
20 lines
477 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
function recursive_optimize_images() {
|
|
cd $1;
|
|
optipng -o6 -strip all *.png;
|
|
jpegoptim --strip-all *.jpg;
|
|
for svg in `ls *.svg`;
|
|
do
|
|
mv $svg $svg.opttmp;
|
|
scour -i $svg.opttmp -o $svg --create-groups --enable-id-stripping --enable-comment-stripping --shorten-ids --remove-metadata --strip-xml-prolog --no-line-breaks;
|
|
done;
|
|
rm *.opttmp
|
|
for dir in `ls -d */`;
|
|
do
|
|
recursive_optimize_images $dir;
|
|
cd ..;
|
|
done;
|
|
}
|
|
|
|
recursive_optimize_images ../../
|