Files @ 81ed238d2406
Branch filter:

Location: C3L/Artwork/optipng.sh - annotation

Dennis Fink
Merge svg2pdf, svg2plainsvg and svg2png into convert.sh
1
2
3
4
5
#!/bin/bash

for i in $(find ./ -type f -name "*.png"); do
    optipng -o7 "$i"
done