bitdream / svg-android

Automatically exported from code.google.com/p/svg-android
0 stars 0 forks source link

Does not support "clipPath" or "use" SVG elements #38

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Attempt to parse an SVG document that contains one or more "clipPath" 
elements or "use" elements.

What is the expected output? What do you see instead?

Expected output: Parsed SVG resource
Actual output: Log entry that reads "UNRECOGNIZED SVG COMMAND: clipPath" 
(generated from startElement() in the SVGHandler class); similarly for "use"

What version of the product are you using? On what operating system?

v1.1 on Android 2.2.

Please provide any additional information below.

It'd be very helpful if the library could someday add support for document 
elements such as these two (and, obviously, any others that are not currently 
supported as well).

For reference, the W3C documentation: 
http://www.w3.org/TR/SVG/masking.html#EstablishingANewClippingPath
http://www.w3.org/TR/SVG/struct.html#UseElement

Original issue reported on code.google.com by aaron.ra...@gmail.com on 5 Sep 2012 at 11:27