Up the resolution of the web graphics.

This will result in increased image size, on the order of 18k->32k, but
I'm fed up with the blurriness of the current images. Ideally I'd move
to SVG for the web images, but Mick reckons that SVG support on mobile
browsers is still limited. Suspect he's probably right.
This commit is contained in:
Jim Hague 2016-11-04 23:31:40 +00:00
parent 407ec5913d
commit d8eb6deee0
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ find $booke -name "*.abc" | sort |
do do
name=`basename $filename .abc` name=`basename $filename .abc`
tmpname=${name}.tmp tmpname=${name}.tmp
convert -density 96 $graphicsdir/${name}.pdf $builddir/${tmpname}.png convert -colors 256 -quality 90 -density 200 $graphicsdir/${name}.pdf $builddir/${tmpname}.png
convert -density 96 $graphicsdir/firstline-${name}.pdf $builddir/firstline-${tmpname}.png convert -colors 256 -quality 90 -density 200 $graphicsdir/firstline-${name}.pdf $builddir/firstline-${tmpname}.png
mv $builddir/${tmpname}.png $builddir/${name}.png mv $builddir/${tmpname}.png $builddir/${name}.png
mv $builddir/firstline-${tmpname}.png $builddir/firstline-${name}.png mv $builddir/firstline-${tmpname}.png $builddir/firstline-${name}.png