diff --git a/.gitignore b/.gitignore index ffb5112..1c237a2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +examples/*.png + ### Python ### # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/tools/genexamples.sh b/tools/genexamples.sh index 3934367..1e57cbd 100755 --- a/tools/genexamples.sh +++ b/tools/genexamples.sh @@ -15,8 +15,8 @@ while read infile; do pngfile="examples/$(basename -s .in "$infile")-$hash-$matrix.png" echo "Generating $svgfile" python3 -m colorhash "$infile" --output-type svg --out "$svgfile" --hash "$hash" --matrix "$matrix" - #echo "Generating $pngfile" - #convert "$svgfile" "$pngfile" + echo "Generating $pngfile" + convert "$svgfile" "$pngfile" done done done