Open GoogleCodeExporter opened 9 years ago
I had the same problem and fixed it.
In line 612 of SVGParser.java, I changed this line:
if (v.endsWith("px")) {
to:
if (v.endsWith("px") || v.endsWith("pt")) {
This check then is followed by a string op that cuts the last two characters
off the number attribute before casting it to a float.
Original comment by skraman1...@gmail.com
on 16 Jul 2015 at 2:54
Original issue reported on code.google.com by
mineus....@gmail.com
on 17 Jun 2014 at 7:26