06-15-2011, 10:17 AM
I have checked the file you send and have found a problem in the svg file.
The transformations for the first group are not defined correctly (there are additional spaces added):
<g transform="rotate(10) scale (1) translate (100,10)">
This line should be:
<g transform="rotate(10) scale(1) translate(100,10)">
without space after scale and translate.
After that change the file is opened correctly.
I have checked the W3C specifications and there it looks that the space should not be there (http://www.w3.org/TR/SVG11/coords.html#T...mAttribute).
Anyway have put this into my todo list and will at least prevent throwing exception in this situation.
The transformations for the first group are not defined correctly (there are additional spaces added):
<g transform="rotate(10) scale (1) translate (100,10)">
This line should be:
<g transform="rotate(10) scale(1) translate(100,10)">
without space after scale and translate.
After that change the file is opened correctly.
I have checked the W3C specifications and there it looks that the space should not be there (http://www.w3.org/TR/SVG11/coords.html#T...mAttribute).
Anyway have put this into my todo list and will at least prevent throwing exception in this situation.
Andrej Benedik

