public interface IDocumentInfo
The objects which implement this interface are returned by Parser.getDocumentInfo()
method.
See the usage examples there.
Learn more:
Modifier and Type | Method and Description |
---|---|
FileType |
getFileType()
Gets the document type.
|
int |
getPageCount()
Gets the total number of document pages.
|
List<PageInfo> |
getPages()
Gets the information about pages such as the index and page size.
|
int |
getRawPageCount()
Gets the total number of document raw pages.
|
long |
getSize()
Gets the size of the document in bytes.
|
FileType getFileType()
FileType
class that represents the type of the document.int getPageCount()
int getRawPageCount()
Use getRawPageCount()
property instead of getPageCount()
property for raw text extraction.
Some documents have different page numbers in accurate and raw text extraction modes.
getPageCount()
property may perform extra calculations which impacts on text extraction speed in raw mode.
long getSize()