Hi,
I created a page comparing the rendering correctness of various open
source SVG implementations:
http://www.linuxrising.org/svg_test/index.html
Noticed that rasterizer/batik doesn't seem to manage to create properly
sized images for the big version of the png files created using this
script:
#!/bin/bash
DEST_SMALL="batik2png"
DEST_BIG="batik2png_big"
mkdir $DEST_SMALL
mkdir $DEST_BIG
for i in *.svg; do NAME_NO_EXT=${i%.svg}; rasterizer $i -d $DEST_BIG -w
480 -h 360; done
for i in *.svg; do NAME_NO_EXT=${i%.svg}; rasterrizer $i -d $DEST_SMALL
-w 160 -h 140; done
Also some for the small ones Batik sometimes creates tiny images.
Thought I should report it here as it could be bugs.
Sincerely,
Christian
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]