forked from CryHavoc/dottes
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:
parent
407ec5913d
commit
d8eb6deee0
|
@ -25,8 +25,8 @@ find $booke -name "*.abc" | sort |
|
|||
do
|
||||
name=`basename $filename .abc`
|
||||
tmpname=${name}.tmp
|
||||
convert -density 96 $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/${name}.pdf $builddir/${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/firstline-${tmpname}.png $builddir/firstline-${name}.png
|
||||
|
|
Loading…
Reference in New Issue