ExtractFilePageContent
Description
Retrieves the page description operators that define the layout of any page in a PDF document. This function does not load the entire file into memory so it can be used with arbitrarily large documents.
Syntax
Delphi
function TQuickPDF0726.ExtractFilePageContent(const InputFileName, Password: string;
Page: Integer): string;
ActiveX
Function QuickPDF0726.PDFLibrary::ExtractFilePageContent(InputFileName As String,
Password As String, Page As Long) As String
DLL
char * QuickPDFExtractFilePageContent(int InstanceID, char * InputFileName,
char * Password, int Page)
Parameters
| InputFileName | The path and file name of the file to extract page content from. Unicode file names are supported, but for the Delphi and DLL editions of the library you will need to encode using UTF-8. |
| Password | The password to use when opening the file |
| Page | The number of the page to extract. The first page in the document is page 1. |