Hello Team,
We are trying to convert SVG file into PDF by using below aspose function
SvgLoadOptions options = new SvgLoadOptions();
com.aspose.pdf.Document pdf = new com.aspose.pdf.Document(new ByteArrayInputStream(this.source.getBytes()),
options);
pdf.getPages().get_Item(1).getPageInfo().getMargin().setTop(0);
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
pdf.save(outputStream);
return outputStream.toByteArray();
SVG file contains Opacity Attribute but in converted PDF file it is not picking the opacity attribute.
below is the SVG element containing opacity attribute
Temp_Cheers.svg.zip (693.5 KB)
so is there a way to pass through this issue. Please share, any suggestion would be appreciated.