We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
svg not loading (Read 366 times)
svg not loading
Feb 23rd, 2010, 9:28pm
 
I made an svg in Inkscape, but when Processing renders it, I can't see the text, all I get is the box part of the logo.  The compiler generates these errors when it is loaded:

Code:
Ignoring  <stop> tag.
Ignoring <flowRoot> tag.


I'm sure there is a simple solution, if it requires redesigning my logo in inkscape to make it compatible with Processing, that's okay.  Help please?
Re: svg not loading
Reply #1 - Feb 23rd, 2010, 10:55pm
 
It is hard to answer without having the SVG file. All I can say is that SVG support in Processing isn't complete (eg. it doesn't support arc primitive in paths), which is understandable because otherwise its size would inflate from the size of Batik, for example... Smiley SVG isn't an easy to implement standard, even if dropping some features like animation and scripting support.

Also ensure your text is exported as paths, not as text with font.
Re: svg not loading
Reply #2 - Feb 23rd, 2010, 11:04pm
 
thanks
Page Index Toggle Pages: 1