Hello
I load this Gif and want to save it as Png with anti alias or high quality options, which will not work:
Setup.gif (3.8 KB)
Dim ASPSaveSetPNG() As New Aspose.Imaging.ImageOptions.PngOptions
Dim MyOptions As New Aspose.Imaging.ImageOptions.VectorRasterizationOptions
Now using any of the following options will not make a difference and the output is exactly the same!
MyOptions.SmoothingMode = Aspose.Imaging.SmoothingMode.Default
or
MyOptions.SmoothingMode = Aspose.Imaging.SmoothingMode.HighQuality
or
MyOptions.SmoothingMode = Aspose.Imaging.SmoothingMode.AntiAlias
or
MyOptions.SmoothingMode = Aspose.Imaging.SmoothingMode.AntiAlias Or Aspose.Imaging.SmoothingMode.HighQuality
ASPSaveSetPNG.VectorRasterizationOptions = MyOptions
Any idea?