 | PdfiumFPDFBitmap_TransferBitmap Method |
Transfer buffer from one Bitmap to another.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFBitmap_TransferBitmap(
IntPtr bitmap,
int dest_left,
int dest_top,
int width,
int height,
IntPtr pSrcBitmap,
int src_left,
int src_top
)
Public Shared Function FPDFBitmap_TransferBitmap (
bitmap As IntPtr,
dest_left As Integer,
dest_top As Integer,
width As Integer,
height As Integer,
pSrcBitmap As IntPtr,
src_left As Integer,
src_top As Integer
) As Boolean
public:
static bool FPDFBitmap_TransferBitmap(
IntPtr bitmap,
int dest_left,
int dest_top,
int width,
int height,
IntPtr pSrcBitmap,
int src_left,
int src_top
)
static member FPDFBitmap_TransferBitmap :
bitmap : IntPtr *
dest_left : int *
dest_top : int *
width : int *
height : int *
pSrcBitmap : IntPtr *
src_left : int *
src_top : int -> bool
public static boolean FPDFBitmap_TransferBitmap(
IntPtr bitmap,
int dest_left,
int dest_top,
int width,
int height,
IntPtr pSrcBitmap,
int src_left,
int src_top
)
Patagames.Pdf.Pdfium.FPDFBitmap_TransferBitmap = function(bitmap, dest_left, dest_top, width, height, pSrcBitmap, src_left, src_top);
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 source device independent bitmap.
- src_left Int32
- The left point in the source bitmap
- src_top Int32
- The top point in the source bitmap
Return Value
BooleanTRUE if succeed, FALSE if failed.
See Also