FreeImage.OpenMultiBitmapFromHandle Method

FreeImage.NET

FreeImageOpenMultiBitmapFromHandle Method
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) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public static FIMULTIBITMAP OpenMultiBitmapFromHandle(
	FREE_IMAGE_FORMAT fif,
	ref FreeImageIO io,
	fi_handle handle,
	FREE_IMAGE_LOAD_FLAGS flags
)

Parameters

fif
Type: FreeImageAPIFREE_IMAGE_FORMAT
Format of the image.
io
Type: FreeImageAPI.IOFreeImageIO
IO functions used to read from the specified handle.
handle
Type: FreeImageAPI.IOfi_handle
The handle to load the bitmap from.
flags
Type: FreeImageAPIFREE_IMAGE_LOAD_FLAGS
Flags to enable or disable plugin-features.

Return Value

Type: FIMULTIBITMAP
Handle to a FreeImage multi-paged bitmap.
See Also