Convert SVG to BMP | C#
BMP files represent Bitmap Image files that are used to store high-quality bitmap digital images. With Aspose.HTML, you can convert SVG to BMP format programmatically with full control over a wide range of conversion parameters. In this article, you find information about converting SVG to BMP using ConvertSVG() methods of the Converter class, and how to apply ImageSaveOptions. Also, you can try an Online SVG Converter to test the Aspose.HTML API functionality and convert SVG on the fly.
Online SVG Converter
You can convert SVG to other formats with Aspose.HTML API in real time. Please load SVG from the local file system, select the output format and run the example. The save options are set by default. You will immediately receive the conversion result as a separate file.
If you want to convert SVG to BMP image programmatically, please see the following C# code examples.
SVG to BMP by a single line of code
The static methods of the Converter class are primarily used as the easiest way to convert an SVG file into various formats. You can convert SVG to BMP in your C# application literally with a single line of code!
In the following example, we take an SVG file in a local file system ( shapes.svg), convert and save it in the local file system.
1// Invoke the ConvertSVG() method for SVG to BMP conversion
2Converter.ConvertSVG(Path.Combine(DataDir, "shapes.svg"), new ImageSaveOptions(ImageFormat.Bmp), Path.Combine(OutputDir, "convert-with-single-line.bmp"));
Convert SVG to BMP
Converting a file to another format using the ConvertSVG() method is a sequence of operations among which document loading and saving. In the following example, we create an SVG file from code.
- Prepare code for an SVG document.
- Create a new ImageSaveOptions object with BMP ImageFormat. By default, the Format property is PNG.
- Use the
ConvertSVG(
content
,baseUri
,options
,outputPath
) method of the Converter class to save SVG as a BMP image.
Please take a look over the following C# code snippet which shows the process of converting SVG to BMP using Aspose.HTML for .NET.
1// Prepare SVG code
2var code = "<svg xmlns='http://www.w3.org/2000/svg'>" +
3 "<circle cx ='100' cy ='100' r ='50' fill='none' stroke='red' stroke-width='10' />" +
4 "</svg>";
5
6// Prepare a path to save the converted file
7string savePath = Path.Combine(OutputDir, "circle.bmp");
8
9// Create an instance of the ImageSaveOptions class
10var options = new ImageSaveOptions(ImageFormat.Bmp);
11
12// Convert SVG to BMP
13Converter.ConvertSVG(code, ".", options, savePath);
You can download the complete examples and data files from GitHub.
Convert SVG to BMP using ImageSaveOptions
To convert SVG to BMP with ImageSaveOptions specifying, you should follow a few steps:
- Load an SVG file using one of the SVGDocument() constructors of the SVGDocument class. ( flower1.svg).
- Create a new ImageSaveOptions object with BMP ImageFormat and specify save options. By default, the Format property is PNG.
- Use the ConvertSVG() method to save SVG as a BMP image. You need to pass the SVGDocument, ImageSaveOptions, and output file path to the ConvertSVG() method to convert SVG to BMP.
The following C# code snippet shows how to convert SVG to BMP using custom save options:
1// Prepare a path to a source SVG file
2string documentPath = Path.Combine(DataDir, "flower1.svg");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "flower-options.bmp");
6
7// Initialize an SVG document from the file
8using var document = new SVGDocument(documentPath);
9
10// Initialize ImageSaveOptions. Set up the SmoothingMode, resolutions, and change the background color to AliceBlue
11var options = new ImageSaveOptions(ImageFormat.Bmp)
12{
13 HorizontalResolution = 200,
14 VerticalResolution = 200,
15 BackgroundColor = System.Drawing.Color.AliceBlue,
16 UseAntialiasing = true,
17};
18
19// Convert SVG to BMP
20Converter.ConvertSVG(document, options, savePath);
The
ImageSaveOptions() constructor initializes an instance of the ImageSaveOptions class that is passed to ConvertSVG() method. The ConvertSVG() method takes the document
, options
, output file path savePath
and performs the conversion operation.
In the above example, we use:
BackgroundColor
property that sets the color that will fill the background. The default BackgroundColor is Transparent;HorizontalResolution
andVerticalResolution
properties that set horizontal/vertical resolution for output images in pixels per inch. By default, these properties are 300 dpi;UseAntialiasing
property that sets the rendering quality for this image. This example usesUseAntialiasing = true
for quality rendering.
Use UseAntialiasing = true
when you want to improve the visual quality of rendered shapes, text, and images in your application, especially when clarity and smooth edges are essential. Enabling antialiasing smooths out jagged edges by blending the colors of pixels around the edges, resulting in a softer, more refined look.
While UseAntialiasing = true
provides better visual quality, it can also increase processing time. For applications where rendering speed is a priority, it may be optimal to set UseAntialiasing = false
.
The figure illustrates the fragment of the flower-options.bmp file.
To learn more about ImageSaveOptions, please read the Fine-Tuning Converters article.
Check the quality of SVG to BMP conversion with our online SVG to BMP Converter. Upload, convert your files and get results in a few seconds. Try our forceful SVG to BMP Converter for free now!
You can download the complete examples and data files from GitHub.