Returns the FreeImage bitmap's transparency table. The array is empty in case the bitmap has no transparency table.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public static byte[] GetTransparencyTableEx(
	FIBITMAP dib
)
Visual Basic (Declaration)
Public Shared Function GetTransparencyTableEx ( _
	dib As FIBITMAP _
) As Byte()
Visual C++
public:
static array<unsigned char>^ GetTransparencyTableEx(
	FIBITMAP dib
)

Parameters

dib
Type: FreeImageAPI..::.FIBITMAP
Handle to a FreeImage bitmap.

Return Value

The FreeImage bitmap's transparency table.

Exceptions

ExceptionCondition
System..::.ArgumentNullException dib is null.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also