I am trying to export slides with images inside using the writeAsSvg function with a memory stream.
The svgs are created fine but the quality of the images are noticeably worse.
Is there a setting to keep a similar quality of the images?
Example code:
ISlide slide = presentation.Slides[1];
Image = new MemoryStream();
// Generate SVG image of slide and save in memory stream
slide.WriteAsSvg(Image );