Sébastien Arbogast <[EMAIL PROTECTED]> writes: > 2005/8/14, Tonny Kohar <[EMAIL PROTECTED]>: >> Hi, >> >> > And I don't manage to get it working. I've tried to edit the same file >> > with Adobe Illustrator but I'm getting another obscure error. >> > >> > What editor do you advise me to use or what should I change to get it >> > working ? >> > >> If I am not wrong you could use Inkscape to save to pure SVG (on the >> save dialog, save type), maybe it will work. > > I've already tried with both "Inkscape SVG" and "Plain SVG" and I get the > same error.
Try a really simple SVG, something like this: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"> <rect fill="white" stroke="none" x="0" y="0" width="50" height="50"/> <rect fill="blue" stroke="none" x="15" y="15" width="20" height="20"/> </svg> You should also check if your SVG looks OK with the Batik viewer. -- Måns Rullgård [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
