NGraphics
NGraphics copied to clipboard
NGraphics is a cross platform library for rendering vector graphics on .NET. It provides a unified API for both immediate and retained mode graphics using high quality native renderers.
Want to extend other ICanvas implementations without touching every function.
UWP support
Would it be possible to add UWP support? It seems that SharpDX 3 supports UWP. Cheers
Please add a .NET Standard version of NGraphics.
Hi, We have to create a new chart with the attached template. could you please suggest me which library would be best to use for the chart. Quality of the...
Rotation of SVG images doesn't seem to work correctly. Especially in certain angles. The following code produces visible "rounded squares" of the circle "fill"-color around the image - those squares...
Hello there, We are using this library, and we are getting a null exception in your library's code, as per my assumption, [this ](https://github.com/praeclarum/NGraphics/blob/master/NGraphics/SvgReader.cs#L592 )is the part of code throwing...
IImageCanvas.DrawImage Changes the orientation of provided image on Canvas Draw This happens on iOS (Xamarin Forms + iOS) & for some images. Code to reproduce ` IPlatform platforms = nGraphics.GetCurrent();...
Thanks a lot for the lib, I just can't code without it. After 0.5 I can display SVG exported by Illustrator I tried to optimize them through SVGO and get...
The attached file has a style="opacity:0.35;", but its not rendered transparent, just solid color. The bug is in SvgReader.cs in ApplyStyle(), but I couldn't figure it out with quickly checking....
please Add 【ICanvas.ClipRectangle】 public interface ICanvas { void ClipRectangle(Rect frame, Size corner); } public class GraphicCanvas : ICanvas { public void ClipRectangle(Rect frame, Size corner) { Graphic.Children.Add(new Rectangle(frame, corner) {...