jdomuser: > Thank you very much, i think it will help; now i should retrieve the base64 > string to feed ParsedURL. To retrive the base64 string, i do the following: > ...... > if (id != null && id.getNodeValue().contains("Picture")) { > Node grandchild = child.getLastChild(); > NodeList grandchildren = grandchild.getChildNodes(); > if (grandchildren.getLength() == 1) { // base 64 image > SVGOMImageElement ie = (SVGOMImageElement) > grandchildren.item(0).getLastChild(); > ...... > but after that, i cant get the string with the line "String image = > ie.getHref().getAnimVal();"
What do you get with the above code? If you don’t have any animations, then you can also use String image = ie.getAttributeNS("http://www.w3.org/1999/xlink", "href"); to get the value of the @xlink:href attribute. Cameron (in Korea on vacation, so unable to reply quickly) -- Cameron McCormack ≝ http://mcc.id.au/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]