PDFDrawGetRawBitmapAsync Method |
Gets the raw bitmap for a given page asynchronously.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public IAsyncOperation<BitmapInfo> GetRawBitmapAsync(
Page page
)
Public Function GetRawBitmapAsync (
page As Page
) As IAsyncOperation(Of BitmapInfo)
public:
virtual IAsyncOperation<BitmapInfo^>^ GetRawBitmapAsync(
[InAttribute] Page^ page
) sealed
function GetRawBitmapAsync(page);
Parameters
- page
- Type: pdftron.PDFPage
The source PDF page.
Return Value
Type:
IAsyncOperationBitmapInfo
When this methods complete, it returns the raw bitmap image (
BitmapInfo) containing pixels in ARGB format.
See Also