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

#### Description I'm using the SVG.NET library to convert SVG to PNG and I have an issue with wrong font being picked. Here is a simple example to explain my...

task

#### Description When rendering an SVG file as a bitmap at 16px the rendered version looks much thicker than when viewed in Chrome at the same size. I have attached...

According to #313 one can set Ppi after creating an SvgDocument. SvgDocument svgDoc = SvgDocument.Open(xmlDoc); svgDoc.Ppi = (int)e.Graphics.DpiX; ... svgDoc.Height = new SvgUnit(SvgUnitType.Millimeter, 20); float h = (int) svgDoc.Height; In...

bug

In the light of the issue #576 (where the author indicated a .NET standard build might be helpful) we might consider splitting some of the parts from the SVG library....

enhancement
platform-support

#### Description SvgPath.Bounds returns different values depending on when it is queried. Adapted from the SVGViewer sample: private void RenderSvg(SvgDocument svgDoc) { var bounds = svgDoc.Bounds; System.Drawing.Bitmap bitmap = new...

#### Description In a C# project I'm trying to convert from SVG to Image object using the following code: `img = Svg.SvgDocument.Open(filePath).Draw();` The problem is with the 'Open' method since...

bug
regression

#### Description Radial gradient doesn't work well ONLY on linux when creating png #### Example data windows: ![image](https://user-images.githubusercontent.com/63203499/139516641-03f94b31-4ca8-424a-a2db-f5ffa07dbcbd.png) linux: ![image](https://user-images.githubusercontent.com/63203499/139516649-a92ad7f4-fb47-47e3-8cd1-1dfd3309fc7b.png) radial gradient on widnows works well but not on linux...

bug
platform-support

#### Description The browser renders as follows: ![image](https://user-images.githubusercontent.com/29726854/139033975-6a9b9844-45bf-487a-9383-7561d69f28af.png) The Svg.net renders as follows: ![image](https://user-images.githubusercontent.com/29726854/139034090-2ed19f46-e8bc-4db9-92f7-3fcbb29abe43.png) #### Example data ` ` #### Used Versions V3.2.0.0

bug

Hi, I'm having trouble getting back the correct XML after adding sub elements to an `SvgDocument` Given the following svg in a file "Min.svg": ```xml ``` and the following code:...

bug
question

#### Description I am using SVG.NET to convert SVG to PNG images, while some parts of the text need to use our private font file: Jyeoohai.ttf and jyeoohai-italic.ttf. I use...

info needed