H1Gdev
H1Gdev
@wieslawsoltes @mrbean-bremen What are you planning to include in `TargetFrameworks` in next release ?
@shark20609 .NET Framework 4.5 is no longer supported. https://dotnet.microsoft.com/download/visual-studio-sdks
@pablojmp Interface specification of Path method is here. https://github.com/vvvv/SVG/pull/500#discussion_r297482241 `SvgPath` violated this spec. and was fixed in PR # 500. Changes to that specification will affect all derived classes of...
> forgive my ignorance, where are the docs for that spec? or are the comments to that PR the specs? As stated in https://github.com/vvvv/SVG/pull/500#discussion_r297482241, I think this was made to...
Is there a description in SVG1.1 about background color ?
`paint-order` specification is [here](https://www.w3.org/TR/SVG2/painting.html#PaintOrderProperty).
@gwang-msft I want to compare it with major browsers, so please upload complete SVG file.
Not set clip in `SvgSymbol`.(However, doing `SetClip` in various codes.)
This library uses via [Graphics](https://docs.microsoft.com/ja-jp/dotnet/api/system.drawing.graphics) class. There may be a difference between x86 and x64 in Rendering. (Especially in binary.) Please attach images output in each environment.
@jfaixolo Will adding the following settings give you the results you expect ? ```cs svg.AspectRatio = new SvgAspectRatio(SvgPreserveAspectRatio.xMinYMin); ``` If you also want to resize png image, use `Draw` method...