-
Notifications
You must be signed in to change notification settings - Fork 5
Home
lublak edited this page Oct 18, 2021
·
6 revisions
Ƭ PdfDataExtractorOptions: Object
Name | Type | Description |
---|---|---|
password? |
string |
password for a password-protected PDF |
verbosity? |
VerbosityLevel |
the logging level |
Ƭ PdfDataGetOptions: Object
Name | Type | Description |
---|---|---|
fingerprint? |
boolean |
get fingerprint, by default it is true |
info? |
boolean |
get info, by default it is true |
metadata? |
boolean |
get metadata, by default it is true |
outline? |
boolean |
get outline, by default it is true |
pages? |
boolean |
get number of pages, by default it is true |
permissions? |
boolean |
get permissions, by default it is true |
text? |
boolean |
get text of each page, by default it is true |
Ƭ PdfDataOptions: Object
Name | Type | Description |
---|---|---|
get? |
PdfDataGetOptions |
options to enable or disable parsing methods |
max? |
number |
the number of pages to be read, all pages are read by default deprecated use pages instead |
pages? |
number | number [] | (pageNumber : number ) => boolean
|
can either be the number of pages to be read, a number array with the exact pages (sorted by page number) or a filter function (return true to parse the page) all pages are read by default not used if get.pages is false |
password? |
string |
password for a password-protected PDF |
sort? |
boolean |
sort the text by text coordinates |
verbosity? |
VerbosityLevel |
the logging level |