Hi,
I am trying to convert an SVG into Jpg using Aspose.Svg and the resultant Jpg file is blurry I also tried with different formats and the result is still the same.
test_sample_1.zip (166.1 KB)
using (var document = new SVGDocument(fileDir + svgname))
{
using (var device = new ImageDevice(new ImageRenderingOptions(ImageFormat.Jpeg), fileDir + "test_sample.jpg"))
{
document.RenderTo(device);
}
}
I am using latest version of the library 21.12.0