Returns the BITMAPINFOHEADER structure of a FreeImage bitmap. The structure is a copy, so changes will have no effect on the bitmap itself.

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

Syntax

C#
public static BITMAPINFOHEADER GetInfoHeaderEx(
	FIBITMAP dib
)
Visual Basic (Declaration)
Public Shared Function GetInfoHeaderEx ( _
	dib As FIBITMAP _
) As BITMAPINFOHEADER
Visual C++
public:
static BITMAPINFOHEADER GetInfoHeaderEx(
	FIBITMAP dib
)

Parameters

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

Return Value

BITMAPINFOHEADER structure of the bitmap.

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