Converts a FreeImage bitmap to a raw bitmap, that is a raw piece of memory.

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

Syntax

C#
public static void ConvertToRawBits(
	IntPtr bits,
	FIBITMAP dib,
	int pitch,
	uint bpp,
	uint red_mask,
	uint green_mask,
	uint blue_mask,
	bool topdown
)
Visual Basic (Declaration)
Public Shared Sub ConvertToRawBits ( _
	bits As IntPtr, _
	dib As FIBITMAP, _
	pitch As Integer, _
	bpp As UInteger, _
	red_mask As UInteger, _
	green_mask As UInteger, _
	blue_mask As UInteger, _
	topdown As Boolean _
)
Visual C++
public:
static void ConvertToRawBits(
	IntPtr bits, 
	FIBITMAP dib, 
	int pitch, 
	unsigned int bpp, 
	unsigned int red_mask, 
	unsigned int green_mask, 
	unsigned int blue_mask, 
	bool topdown
)

Parameters

bits
Type: System..::.IntPtr
Pointer to the memory block receiving the raw bitmap.
dib
Type: FreeImageAPI..::.FIBITMAP
Handle to a FreeImage bitmap.
pitch
Type: System..::.Int32
The desired total width in bytes of a scanline in the raw bitmap, including any padding bytes.
bpp
Type: System..::.UInt32
The desired bit depth (bits per pixel) of the raw bitmap.
red_mask
Type: System..::.UInt32
The desired bit mask describing the bits used to store a single pixel's red component in the raw bitmap. This is only applied to 16-bpp raw bitmaps.
green_mask
Type: System..::.UInt32
The desired bit mask describing the bits used to store a single pixel's green component in the raw bitmap. This is only applied to 16-bpp raw bitmaps.
blue_mask
Type: System..::.UInt32
The desired bit mask describing the bits used to store a single pixel's blue component in the raw bitmap. This is only applied to 16-bpp raw bitmaps.
topdown
Type: System..::.Boolean
If true, the raw bitmap will be stored in top-down order (top-left pixel first) and in bottom-up order (bottom-left pixel first) otherwise.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also