 | PdfiumFPDFBitmap_LoadChannel(IntPtr, BitmapChannels, IntPtr, BitmapChannels) Method |
Copy the specified channel from one bitmap to another
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFBitmap_LoadChannel(
IntPtr dstBitmap,
BitmapChannels dstChannel,
IntPtr srcBitmap,
BitmapChannels srcChannel
)
Public Shared Function FPDFBitmap_LoadChannel (
dstBitmap As IntPtr,
dstChannel As BitmapChannels,
srcBitmap As IntPtr,
srcChannel As BitmapChannels
) As Boolean
public:
static bool FPDFBitmap_LoadChannel(
IntPtr dstBitmap,
BitmapChannels dstChannel,
IntPtr srcBitmap,
BitmapChannels srcChannel
)
static member FPDFBitmap_LoadChannel :
dstBitmap : IntPtr *
dstChannel : BitmapChannels *
srcBitmap : IntPtr *
srcChannel : BitmapChannels -> bool
public static boolean FPDFBitmap_LoadChannel(
IntPtr dstBitmap,
BitmapChannels dstChannel,
IntPtr srcBitmap,
BitmapChannels srcChannel
)
Patagames.Pdf.Pdfium.FPDFBitmap_LoadChannel = function(dstBitmap, dstChannel, srcBitmap, srcChannel);
Parameters
- dstBitmap IntPtr
- A handle to the destination bitmap.
- dstChannel BitmapChannels
- A color component channel in the destionation bitmap.
- srcBitmap IntPtr
- A handle to the source bitmap.
- srcChannel BitmapChannels
- A color component channel in the source bitmap.
Return Value
BooleanTRUE if succeed, FALSE if failed.
See Also