Convert Raster Image to SVG
Convert Raster Image to SVG
Using Aspose.Imaging for Java, developers can convert Raster image to SVG. This article shows how to export/convert Raster format file to SVG formats with Aspose.Imaging. Using Aspose.Imaging for .Java you can load image of any format and than you can set various properties using SvgImage class and save the image. The following code snippet shows you how to convert SVG to PNG image.
String[] paths = new String[] | |
{ | |
"C:\\test\\butterfly.gif", | |
"C:\\test\\33715-cmyk.jpeg", | |
"C:\\test\\3.JPG", | |
"C:\\test\\test.j2k", | |
"C:\\test\\Rings.png", | |
"C:\\test\\3layers_maximized_comp.psd", | |
"C:\\test\\img4.TIF", | |
"C:\\test\\Lossy5.webp" | |
}; | |
for (String path : paths) | |
{ | |
String destPath = path + ".svg"; | |
Image image = Image.load(path); | |
try | |
{ | |
SvgOptions svgOptions = new SvgOptions(); | |
SvgRasterizationOptions svgRasterizationOptions = new SvgRasterizationOptions(); | |
svgRasterizationOptions.setPageWidth(image.getWidth()); | |
svgRasterizationOptions.setPageHeight(image.getHeight()); | |
svgOptions.setVectorRasterizationOptions(svgRasterizationOptions); | |
image.save(destPath, svgOptions); | |
} | |
finally | |
{ | |
image.close(); | |
} | |
} |