Saves a bitmap to an arbitrary source.

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

Syntax

C#
public static bool SaveToHandle(
	FREE_IMAGE_FORMAT fif,
	FIBITMAP dib,
	ref FreeImageIO io,
	fi_handle handle,
	FREE_IMAGE_SAVE_FLAGS flags
)
Visual Basic (Declaration)
Public Shared Function SaveToHandle ( _
	fif As FREE_IMAGE_FORMAT, _
	dib As FIBITMAP, _
	ByRef io As FreeImageIO, _
	handle As fi_handle, _
	flags As FREE_IMAGE_SAVE_FLAGS _
) As Boolean
Visual C++
public:
static bool SaveToHandle(
	FREE_IMAGE_FORMAT fif, 
	FIBITMAP dib, 
	FreeImageIO% io, 
	fi_handle handle, 
	FREE_IMAGE_SAVE_FLAGS flags
)

Parameters

fif
Type: FreeImageAPI..::.FREE_IMAGE_FORMAT
Type of the bitmap.
dib
Type: FreeImageAPI..::.FIBITMAP
Handle to a FreeImage bitmap.
io
Type: FreeImageAPI.IO..::.FreeImageIO %
A FreeImageIO structure with functionpointers to handle the source.
handle
Type: FreeImageAPI.IO..::.fi_handle
A handle to the source.
flags
Type: FreeImageAPI..::.FREE_IMAGE_SAVE_FLAGS
Flags to enable or disable plugin-features.

Return Value

Returns true on success, false on failure.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also