Thanks Theirry,
>From: Thierry Kormann <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: To view SVG Element
>Date: Fri, 14 Dec 2001 10:30:46 +0100
>
>On Friday 14 December 2001 10:13, you wrote:
> > Vincent,
> >
> &
a particular path
> because when I try to use the method getAttributeNS(svgNS, "d") with svgroot
> which is element of document the it gives me a null value.
>
> Please help
>
> Arvind
>
> >From: Vincent Hardy <[EMAIL PROTECTED]>
> >Reply-To: [EMAI
On Friday 14 December 2001 10:13, you wrote:
> Vincent,
>
> Thanks but how do i access d element of a particular path
> because when I try to use the method getAttributeNS(svgNS, "d") with
> svgroot which is element of document the it gives me a null value.
That should be:
getAttributeNS(null, "
y-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: To view SVG Element
>Date: Wed, 12 Dec 2001 14:17:57 +0100
>
>Arvind,
>
>If you are trying to read the 's d attribute, you need to
>use the getAttributeNS(svgNS, "d") method.
>
>Vincent.
>
>
Vincent Hardy wrote:
>
> Arvind,
>
> If you are trying to read the 's d attribute, you need to
> use the getAttributeNS(svgNS, "d") method.
Ooops, getAttributeNS(null, "d");
Thanks Thierry for noticing the error.
Vincent.
-
To
Arvind,
If you are trying to read the 's d attribute, you need to
use the getAttributeNS(svgNS, "d") method.
Vincent.
Arvind Sareen wrote:
>
> Hi
>
> I have created a SVG document and then tried to read it by converting it
> into document. Now I want to read path elements values.
> Please he
Hi
I have created a SVG document and then tried to read it by converting it
into document. Now I want to read path elements values.
Please help .Below is my code.
try
{
String parser = XMLResourceDescriptor.getXMLParserClassName();
SAXSVGDocumentFactory f = new SAXSVGD