FreeImage.OpenMultiBitmap Method

FreeImage.NET

FreeImageOpenMultiBitmap Method
Loads a FreeImage multi-paged bitmap. 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 OpenMultiBitmap(
	FREE_IMAGE_FORMAT fif,
	string filename,
	bool create_new,
	bool read_only,
	bool keep_cache_in_memory,
	FREE_IMAGE_LOAD_FLAGS flags
)

Parameters

fif
Type: FreeImageAPIFREE_IMAGE_FORMAT
Format of the image.
filename
Type: SystemString
The complete name of the file to load.
create_new
Type: SystemBoolean
When true a new bitmap is created.
read_only
Type: SystemBoolean
When true the bitmap will be loaded read only.
keep_cache_in_memory
Type: SystemBoolean
When true performance is increased at the cost of memory.
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