Hello,
According to this and many other sources:
The inclusion of an alpha channel in TGA format allows for the creation of images with varying levels of transparency…
Does Aspose Imaging support transparency with alpha Argb when saving Tga?
And also:
Dim TiffSaveOpt As TiffOptions
TiffSaveOpt = New Aspose.Imaging.ImageOptions.TiffOptions(Aspose.Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.TiffDeflateRgba)
Dim MyOptions As New Aspose.Imaging.ImageOptions.VectorRasterizationOptions
MyOptions.BackgroundColor = Aspose.Imaging.Color.Transparent
TiffSaveOpt.VectorRasterizationOptions = MyOptions
Returns one warning:
Variable ‘ASPSaveSetTIF’ is used before it has been assigned a value. A null reference exception could result at runtime.
Also using this:
TiffSaveOpt.VectorRasterizationOptions.BackgroundColor = Aspose.Imaging.Color.Transparent
Will actually throw null exception!