SVG icon indicating copy to clipboard operation
SVG copied to clipboard

Fork of the ms svg library

Results 141 SVG issues
Sort by recently updated
recently updated
newest added

I'm working on convert SVG to PNG using svg-net in c#. the problem is when I meet Arabic character "(" or ")" . - (other characters no problem). The position...

#### Description When i try to render or transform to bitmap the folowing svg using versions from 3.2 and up (i didn't test the master), the text with path is...

I want to add atooltiptext on mouse over like the following sample function showTooltip(evt, text) { let tooltip = document.getElementById("tooltip"); tooltip.innerHTML = text; tooltip.style.display = "block"; tooltip.style.left = evt.pageX +...

I'm using latest version 3.4.4 to convert base30 string to PNG and all working fine in development environment. But when deployed to dev server, it throw a NullReferenceException. Svg.SvgDocument Draw()...

#### Description dominant-baseline attribute seems to be ignored. Using the svg below the text label middle is expected to be aligned with x axis but the bottom of the text...

#### Description With the following SVG ![lightbulb-on](https://user-images.githubusercontent.com/3088971/195122077-2f6c01ae-376d-4f6b-aca4-eb3a3ea9e142.svg) the bounds seem incorrect. If I open the SVG in the SvgViewer and request the bounds via svgDoc.Bounds I get the following. ```...

[ #### Description SVGPath points when drawn as Polygon then image is skewed Note: when I use DrawPath and FillPath then it’s working properly but in my application I need...

#### Description This SVG: ![source](https://github.com/svg-net/SVG/assets/7062803/3647b1e2-f52d-498b-aacb-e98227b73e8a) Gets rendered as: ![render](https://github.com/svg-net/SVG/assets/7062803/bd61d86d-c254-4e79-9f88-65ca4962cd91) The followin test code was used: ``` c# var svg = SvgDocument.Open(Stream); _image = svg.Draw(); _image.Save("render.png"); Stream.Seek(0, SeekOrigin.Begin); using var save...

#### Description Somewhere between versions 3.0.84 and 3.4.7 the default behaviour of iterating through `SvgPathSegmentList` changed. In the 3.0.84 version iterating through the `SvgPathSegmentList` returns `SvgPathSegment` result as absolute coordinates...

Transformations are handled using the `System.Drawing.Drawing2D.Matrix` class. However, `System.Drawing.Drawing2D` contains some windows-only code, which generates a warning if used. I'm using this package as a dependency in my project, but...