SVG to Image Conversion
In this article, you will find information on how to convert an SVG to Image File Formats such as JPEG, PNG, BMP, TIFF and how to use ImageSaveOptions and MemoryStreamProvider parameters.
The static methods of the Converter class are primarily used as the easiest way to convert an SVG code into various formats. You can convert HTML to Image in your Java application literally with a single line of code!
Convert SVG to JPG
You can check the quality of SVG to JPG conversion at this link: https://products.aspose.app/html/en/conversion/svg-to-jpg
The following Java code snippet shows how to convert SVG to JPG using Aspose.HTML for Java.
- Load the HTML file using SVGDocument class
- Create a new ImageSaveOptions object with JPG ImageFormat
- Use the
Converter.convertSVG
method of Converter class to save SVG as a JPG image. You need to pass the SVGDocument , ImageSaveOptions , and output file path to theConverter.convertSVG
method to convert SVG to JPG.
Convert SVG to PNG
The following Java code snippet shows how to convert SVG to PNG using Aspose.HTML for Java.
- Load the HTML file using SVGDocument class
- Create a new ImageSaveOptions object with PNG ImageFormat
- Use the
Converter.convertSVG
method of Converter class to save SVG as a PNG image. You need to pass the SVGDocument , ImageSaveOptions , and output file path to theConverter.convertSVG
method to convert SVG to PNG.
Convert SVG to BMP
You can check the quality of SVG to BMP conversion at this link: https://products.aspose.app/html/en/conversion/svg-to-bmp
The following Java code snippet shows how to convert SVG to BMP using Aspose.HTML for Java.
- Load the HTML file using SVGDocument class
- Create a new ImageSaveOptions object with BMP ImageFormat
- Use the
Converter.convertSVG
method of Converter class to save SVG as a BMP image. You need to pass the SVGDocument , ImageSaveOptions , and output file path to theConverter.convertSVG
method to convert SVG to BMP.
Convert SVG to GIF
The following Java code snippet shows how to convert SVG to GIF using Aspose.HTML for Java.
- Load the HTML file using SVGDocument class
- Create a new ImageSaveOptions object with GIF ImageFormat
- Use the
Converter.convertSVG
method of Converter class to save SVG as a GIF image. You need to pass the SVGDocument , ImageSaveOptions , and output file path to theConverter.convertSVG
method to convert SVG to GIF.
Convert SVG to TIFF
You can check the quality of SVG to TIFF conversion at this link: https://products.aspose.app/html/en/conversion/svg-to-tiff
The following Java code snippet shows how to convert SVG to TIFF using Aspose.HTML for Java.
- Load the HTML file using SVGDocument class
- Create a new ImageSaveOptions object with TIFF ImageFormat
- Use the
Converter.convertSVG
method of Converter class to save SVG as a GIF image. You need to pass the SVGDocument , ImageSaveOptions , and output file path to theConverter.convertSVG
method to convert SVG to TIFF.
Save Options
ImageSaveOptions allows you to customize the rendering process. You can specify the image format , page size , margins , compression level , CSS media-type , etc. The following example shows how to use ImageSaveOptions and create the output image with custom page-size and background color:
To learn more about ImageOptions please read Fine-Tuning Converters article.
Output Stream Providers
If it is required to save files in the remote storage (e.g., cloud, database, etc.) you can implement MemoryStreamProvider interface to have manual control over the file creating process. This interface designed as a callback object to create a stream at the beginning of the document/page (depending on the output format) and release the early created stream after rendering document/page.
The example below shows how to implement and use the your own MemoryStreamProvider in the application: