Skip to content
lublak edited this page Oct 18, 2021 · 6 revisions

pdfdataextract

Table of contents

Enumerations

Classes

Interfaces

Type aliases

Type aliases

PdfDataExtractorOptions

Ƭ PdfDataExtractorOptions: Object

Type declaration

Name Type Description
password? string password for a password-protected PDF
verbosity? VerbosityLevel the logging level

Defined in

pdfdataextractor.ts:6


PdfDataGetOptions

Ƭ PdfDataGetOptions: Object

Type declaration

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

Defined in

pdfdata.ts:4


PdfDataOptions

Ƭ PdfDataOptions: Object

Type declaration

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

Defined in

pdfdata.ts:49