Hi,
I'm trying to add SVG image to Slide with this code.
string image_path = "c:\sample.svg";
IEmbedImage ashape = presentation.Slides[0].Shapes.AppendEmbedImage(ShapeType.Rectangle, image_path, new RectangleF(0, 0, 100, 200));
but it caused a error System.OutOfMemoryException.
The image size is not so large.
Could you give me a correcting to me? Or, Is it available to add SVG to Slide?
Thanks.