Checks if a plugin can save bitmaps in the desired bit depth.

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

Syntax

C#
public static bool FIFSupportsExportBPP(
	FREE_IMAGE_FORMAT fif,
	int bpp
)
Visual Basic (Declaration)
Public Shared Function FIFSupportsExportBPP ( _
	fif As FREE_IMAGE_FORMAT, _
	bpp As Integer _
) As Boolean
Visual C++
public:
static bool FIFSupportsExportBPP(
	FREE_IMAGE_FORMAT fif, 
	int bpp
)

Parameters

fif
Type: FreeImageAPI..::.FREE_IMAGE_FORMAT
The FREE_IMAGE_FORMAT of the plugin.
bpp
Type: System..::.Int32
The desired bit depth.

Return Value

True if the plugin can save bitmaps in the desired bit depth, else false.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also