| Package | Description |
|---|---|
| com.groupdocs.parser |
The package provides classes for parsing data from documents.
|
| com.groupdocs.parser.data |
The package provides classes which represent parsing results.
|
| com.groupdocs.parser.export |
The package provides classes that allow users to export data to different formats.
|
| com.groupdocs.parser.options |
The package provides classes to specify additional options when parsing data from documents.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<PageTextArea> |
Parser.getTextAreas()
Extracts text areas from the document.
|
Iterable<PageTextArea> |
Parser.getTextAreas(int pageIndex)
Extracts text areas from the document page.
|
Iterable<PageTextArea> |
Parser.getTextAreas(int pageIndex,
PageTextAreaOptions options)
Extracts text areas from the document page using customization options (regular expression, match case, etc.).
|
Iterable<PageTextArea> |
Parser.getTextAreas(PageTextAreaOptions options)
Extracts text areas from the document using customization options (regular expression, match case, etc.).
|
| Modifier and Type | Method and Description |
|---|---|
List<PageTextArea> |
PageTextArea.getAreas()
Gets the collection of child text page areas.
|
| Constructor and Description |
|---|
PageTextArea(Iterable<PageTextArea> areas,
Page page)
Initializes a new instance of the
PageTextArea class. |
| Modifier and Type | Method and Description |
|---|---|
com.google.gson.JsonElement |
JsonExporter.PageTextAreaSerializer.serialize(PageTextArea pageTextArea,
Type typeOfSrc,
com.google.gson.JsonSerializationContext context) |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
ExporterBase.exportTextAreas(Iterable<PageTextArea> textAreas,
OutputStream outputStream)
Exports the collection of text areas to the stream.
|
void |
JsonExporter.exportTextAreas(Iterable<PageTextArea> textAreas,
OutputStream outputStream)
Exports the collection of text areas to the stream.
|
void |
XmlExporter.exportTextAreas(Iterable<PageTextArea> textAreas,
OutputStream outputStream)
Exports the collection of text areas to the stream.
|
void |
ExporterBase.exportTextAreas(Iterable<PageTextArea> textAreas,
String fileName)
Exports the collection of text areas to the file.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<PageTextArea> |
OcrConnectorBase.recognizeTextAreas(InputStream imageStream,
int pageIndex,
Size pageSize,
OcrOptions options)
Deprecated.
OCR Connector doesn't support the page extraction. By default, pageIndex is ignored.
|
Iterable<PageTextArea> |
OcrConnectorBase.recognizeTextAreas(InputStream imageStream,
Size pageSize,
OcrOptions options)
Recognize text areas from
imageStream stream. |
Copyright © 2026. All rights reserved.