Click or drag to resize

PdfiumFPDFBitmap_CompositeBitmap Method

Composites bitmaps that have transparent or semitransparent pixels.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static bool FPDFBitmap_CompositeBitmap(
	IntPtr bitmap,
	int dest_left,
	int dest_top,
	int width,
	int height,
	IntPtr pSrcBitmap,
	int src_left,
	int src_top,
	BlendTypes blend_type = BlendTypes.FXDIB_BLEND_NORMAL,
	FX_RECT pClipRgn = null,
	bool bRgbByteOrder = false
)

Parameters

bitmap  IntPtr
A handle to the destination device independent bitmap.
dest_left  Int32
The left point in the destination bitmap
dest_top  Int32
The top point in the destination bitmap
width  Int32
The width
height  Int32
The height
pSrcBitmap  IntPtr
A handle to the sourcde device independent bitmap.
src_left  Int32
The left point in the source bitmap
src_top  Int32
The top point in the source bitmap
blend_type  BlendTypes  (Optional)
The BlendTypes controls blending by specifying the blending type for source and destination bitmaps.
pClipRgn  FX_RECT  (Optional)
Clipping region
bRgbByteOrder  Boolean  (Optional)
Byte order

Return Value

Boolean
TRUE if succeed, FALSE if failed.
See Also