 | PdfiumFFPDFBitmap_FlipImage Method |
Clone and flip the bitmap.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FFPDFBitmap_FlipImage(
IntPtr bitmap,
bool bXFlip,
bool bYFlip
)
Public Shared Function FFPDFBitmap_FlipImage (
bitmap As IntPtr,
bXFlip As Boolean,
bYFlip As Boolean
) As IntPtr
public:
static IntPtr FFPDFBitmap_FlipImage(
IntPtr bitmap,
bool bXFlip,
bool bYFlip
)
static member FFPDFBitmap_FlipImage :
bitmap : IntPtr *
bXFlip : bool *
bYFlip : bool -> IntPtr
public static IntPtr FFPDFBitmap_FlipImage(
IntPtr bitmap,
boolean bXFlip,
boolean bYFlip
)
Patagames.Pdf.Pdfium.FFPDFBitmap_FlipImage = function(bitmap, bXFlip, bYFlip);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
- bXFlip Boolean
- A flag indicating whether to flip an image in horizontal dimension.
- bYFlip Boolean
- A flag indicating whether to flip an image in vertical dimension.
Return Value
IntPtrA bitmap descriptor containing copied pixels.
When an application is finished using the bitmap handle returned by
FFPDFBitmap_FlipImage(IntPtr, Boolean, Boolean),
use the
FPDFBitmap_Destroy(IntPtr) function to close the handle.
See Also