Aspose.SVG converts large SVG into multiple BMPs. Should only be one.
using (var document = new SVGDocument(@"C:\Users\niels\Desktop\Workspace\sample.svg"))
{
var saveOptions = new ImageSaveOptions(ImageFormat.Bmp);
Aspose.Svg.Converters.Converter.ConvertSVG(document, saveOptions, @"C:\Users\niels\Desktop\Workspace\sample.bmp");
}
sample.zip (100.3 KB)