 | PdfiumFPDFBitmap_GetStride Method |
Returns number of bytes for each scan line in the bitmap buffer.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static int FPDFBitmap_GetStride(
IntPtr bitmap
)
Public Shared Function FPDFBitmap_GetStride (
bitmap As IntPtr
) As Integer
public:
static int FPDFBitmap_GetStride(
IntPtr bitmap
)
static member FPDFBitmap_GetStride :
bitmap : IntPtr -> int
public static int FPDFBitmap_GetStride(
IntPtr bitmap
)
Patagames.Pdf.Pdfium.FPDFBitmap_GetStride = function(bitmap);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
Return Value
Int32An integer that specifies the byte offset between the beginning of one scan line and the next. This is usually (but not necessarily) the number of bytes in the pixel format (for example, 2 for 16 bits per pixel) multiplied by the width of the bitmap. The value passed to this parameter must be a multiple of four.
See Also