DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=36570>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=36570 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From [EMAIL PROTECTED] 2007-09-24 04:03 ------- You are using getPresentationAttribute(), but your element does not have any presentation attributes, it has a style="" attribute that sets some properties. If instead your document were: <svg xmlns="http://www.w3.org/2000/svg" width="500" height="300" viewBox="0 0 500 300"> <rect x="40" y="20" width="400" height="200" fill="blue" stroke="gray" stroke-width="0.5"/> </svg> then the program should work. Batik's behaviour isn't strictly correct, since a getPresentationAttribute() call when there is no corresponding presentation attribute set on the element should return null. This is now fixed in SVN. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
