FreeImage.OpenMultiBitmapEx Method (String, Boolean, Boolean, Boolean)

FreeImage.NET

FreeImageOpenMultiBitmapEx Method (String, Boolean, Boolean, Boolean)
Loads a FreeImage multi-paged bitmap.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public static FIMULTIBITMAP OpenMultiBitmapEx(
	string filename,
	bool create_new,
	bool read_only,
	bool keep_cache_in_memory
)

Parameters

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.

Return Value

Type: FIMULTIBITMAP
Handle to a FreeImage multi-paged bitmap.
Exceptions
ExceptionCondition
FileNotFoundExceptionfilename does not exists while opening.
See Also