 | PdfiumFFPDFBitmap_CloneConvert Method |
Clone and convert the bitmap to the specified format.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FFPDFBitmap_CloneConvert(
IntPtr bitmap,
BitmapFormats format
)
Public Shared Function FFPDFBitmap_CloneConvert (
bitmap As IntPtr,
format As BitmapFormats
) As IntPtr
public:
static IntPtr FFPDFBitmap_CloneConvert(
IntPtr bitmap,
BitmapFormats format
)
static member FFPDFBitmap_CloneConvert :
bitmap : IntPtr *
format : BitmapFormats -> IntPtr
public static IntPtr FFPDFBitmap_CloneConvert(
IntPtr bitmap,
BitmapFormats format
)
Patagames.Pdf.Pdfium.FFPDFBitmap_CloneConvert = function(bitmap, format);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
- format BitmapFormats
- The pixel format to convert bitmap to.
Return Value
IntPtrA bitmap descriptor containing copied pixels.
When an application is finished using the bitmap handle returned by
FFPDFBitmap_CloneConvert(IntPtr, BitmapFormats),
use the
FPDFBitmap_Destroy(IntPtr) function to close the handle.
See Also