Loads a FreeImage multi-pages bitmap from the specified handle using the specified functions. Load flags can be provided by the flags parameter.

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

Syntax

C#
public static FIMULTIBITMAP OpenMultiBitmapFromHandle(
	FREE_IMAGE_FORMAT fif,
	ref FreeImageIO io,
	fi_handle handle,
	FREE_IMAGE_LOAD_FLAGS flags
)
Visual Basic (Declaration)
Public Shared Function OpenMultiBitmapFromHandle ( _
	fif As FREE_IMAGE_FORMAT, _
	ByRef io As FreeImageIO, _
	handle As fi_handle, _
	flags As FREE_IMAGE_LOAD_FLAGS _
) As FIMULTIBITMAP
Visual C++
public:
static FIMULTIBITMAP OpenMultiBitmapFromHandle(
	FREE_IMAGE_FORMAT fif, 
	FreeImageIO% io, 
	fi_handle handle, 
	FREE_IMAGE_LOAD_FLAGS flags
)

Parameters

fif
Type: FreeImageAPI..::.FREE_IMAGE_FORMAT
Format of the image.
io
Type: FreeImageAPI.IO..::.FreeImageIO %
IO functions used to read from the specified handle.
handle
Type: FreeImageAPI.IO..::.fi_handle
The handle to load the bitmap from.
flags
Type: FreeImageAPI..::.FREE_IMAGE_LOAD_FLAGS
Flags to enable or disable plugin-features.

Return Value

Handle to a FreeImage multi-paged bitmap.

Version Information

FreeImage.NET

Supported in: 3.13.0, 3.13.1

See Also