 | PdfiumFPDFBitmap_CompositeRect Method |
Composites specified bitmap and color.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFBitmap_CompositeRect(
IntPtr bitmap,
int dest_left,
int dest_top,
int width,
int height,
uint color,
int alpha_flag = 0
)
Public Shared Function FPDFBitmap_CompositeRect (
bitmap As IntPtr,
dest_left As Integer,
dest_top As Integer,
width As Integer,
height As Integer,
color As UInteger,
Optional alpha_flag As Integer = 0
) As Boolean
public:
static bool FPDFBitmap_CompositeRect(
IntPtr bitmap,
int dest_left,
int dest_top,
int width,
int height,
unsigned int color,
int alpha_flag = 0
)
static member FPDFBitmap_CompositeRect :
bitmap : IntPtr *
dest_left : int *
dest_top : int *
width : int *
height : int *
color : uint32 *
?alpha_flag : int
(* Defaults:
let _alpha_flag = defaultArg alpha_flag 0
*)
-> bool
public static boolean FPDFBitmap_CompositeRect(
IntPtr bitmap,
int dest_left,
int dest_top,
int width,
int height,
UInt32 color,
int alpha_flag = 0
)
Patagames.Pdf.Pdfium.FPDFBitmap_CompositeRect = function(bitmap, dest_left, dest_top, width, height, color, alpha_flag);
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
- color UInt32
- The color
- alpha_flag Int32 (Optional)
- alpha flag
Return Value
BooleanTRUE if succeed, FALSE if failed.
See Also