PDFDrawExport Method (Page, String) |
Exports a page to an image.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Export(
Page page,
string filename
)
Public Sub Export (
page As Page,
filename As String
)
public:
virtual void Export(
[InAttribute] Page^ page,
[InAttribute] String^ filename
) sealed
function Export(page, filename);
Parameters
- page
- Type: pdftron.PDFPage
The page to export.
- filename
- Type: SystemString
The path and filename where to export the image. The filename should include the extension suffix (i.e. MyImage.bmp).
Remarks
This method can only be used within the application's sandbox.
See Also