 | PdfiumFFPDFBitmap_Clone Method |
Clone specified bitmap.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FFPDFBitmap_Clone(
IntPtr bitmap,
FX_RECT clip = null
)
Public Shared Function FFPDFBitmap_Clone (
bitmap As IntPtr,
Optional clip As FX_RECT = Nothing
) As IntPtr
public:
static IntPtr FFPDFBitmap_Clone(
IntPtr bitmap,
FX_RECT^ clip = nullptr
)
static member FFPDFBitmap_Clone :
bitmap : IntPtr *
?clip : FX_RECT
(* Defaults:
let _clip = defaultArg clip null
*)
-> IntPtr
public static IntPtr FFPDFBitmap_Clone(
IntPtr bitmap,
FX_RECT clip = null
)
Patagames.Pdf.Pdfium.FFPDFBitmap_Clone = function(bitmap, clip);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
- clip FX_RECT (Optional)
- Clipping area.
Return Value
IntPtrA bitmap descriptor containing copied pixels.
When an application is finished using the bitmap handle returned by
FFPDFBitmap_Clone(IntPtr, FX_RECT),
use the
FPDFBitmap_Destroy(IntPtr) function to close the handle.
See Also