SVG
SVG copied to clipboard
Fork of the ms svg library
#### 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...
#### 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...
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....
#### 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...
#### Description Radial gradient doesn't work well ONLY on linux when creating png #### Example data windows:  linux:  radial gradient on widnows works well but not on linux...
#### Description The browser renders as follows:  The Svg.net renders as follows:  #### Example data ` ` #### Used Versions V3.2.0.0
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:...
#### 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...