Hi,
I have a SVG file that I need to convert, using .NET/C# code. However some layout in the SVG is kind of scrambled through the image, so the resulting image is not ok.
The code is very simple:
using (var svgImage = Aspose.Imaging.Image.Load("C:\\temp\logo.svg"))
{
ImageOptionsBase exportOptions;
exportOptions = new PngOptions();
svgImage.Save("C:\\temp\logo.png", exportOptions);
}
The same happens when converting to JPG.
Source file is located at https://www.dezeyp.be/themes/custom/dezeyp/logo.svg?v=2.0
This is the resulting file:
De Zeyp_original_1656x919.PNG (8.1 KB)