You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Beregoz Thanks for tracking and fixing this issue. I have verified your solution and it works perfectly.
The fix is committed in 5e963d5
Note: I have not committed build assemblies (contents of the \Output folder), because my local source contains other changes, which are parts of on-going SVG fonts supports.
SvgTransformList
private static Regex _regExtract = new Regex("([A-Za-z]+)\\s*\\(([\\-0-9\\.eE\\,\\s]+)\\)", RegexOptions.Compiled);
Will not match with matrix(1.00000000000e+00,0.000000000000e+00,0.0000000000e+00,-1.00000000000e+00,0.0000000e+00,-6.500000000e+01)
I think it should be something like:
private static Regex _regExtract = new Regex("([A-Za-z]+)\\s*\\(([\\-0-9\\.eE+-\\,\\s]+)\\)", RegexOptions.Compiled);
So the "+" sign will be handled as well.
The text was updated successfully, but these errors were encountered: