On Thursday 06 September 2001 15:48, Albert Valls wrote:
> I need a SVGTextElement or it's implementing class SVGOMTextElement in
> witch are many methods I need to manipulate the position of the text. (I
> know many of them are not already implemented). One of the methods is the
> getBBox() for example.
>
> This is my code:
>
> NodeList list = svgRoot.getElementsByTagName("text");
>
> int listLength = list.getLength();
> int i = 0;
> while ( i < listLength ) {
> Node aux = list.item(i);
> ....
> ....
> SVGOMTextElement textE = (SVGOMTextElement)list.item(i);
> <<< Here is the problem
> ....
> i++;
> }
This kind of problems can happen if you build your document using something
else that the org.apache.batik.dom.svg.SVGDOMImplementation.createDocument().
--
Stephane.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]