Skip to content

Commit e9d35db

Browse files
Update file(s) "/." from "groupdocs-parser/Groupdocs.Parser-References"
1 parent d44879c commit e9d35db

44 files changed

Lines changed: 344 additions & 49 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The namespace provides classes to specify additional options when parsing data f
3737
| [PageRenderInfo](./pagerenderinfo) | Represents the information of how a page is rendered. |
3838
| [PageTableAreaOptions](./pagetableareaoptions) | Provides the options which are used for page table areas extraction. |
3939
| [PageTextAreaOptions](./pagetextareaoptions) | Provides the options which are used for page text areas extraction. |
40+
| [ParseByTemplateOptions](./parsebytemplateoptions) | Provides the options which are used to parse by template. |
4041
| [ParserSettings](./parsersettings) | Provides the settings which are used to customize data extraction. |
4142
| [PreviewOptions](./previewoptions) | Provides options to sets requirements and stream delegates for preview generation. |
4243
| [PreviewPageRender](./previewpagerender) | Represents a method which is called before a document page is rendered. |

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/ocrconnectorbase/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public abstract class OcrConnectorBase
2626
| Name | Description |
2727
| --- | --- |
2828
| virtual [RecognizeText](../../groupdocs.parser.options/ocrconnectorbase/recognizetext#recognizetext)(StreamOcrOptions) | Recognize a text from *imageStream* stream. |
29-
| virtual [RecognizeTextAreas](../../groupdocs.parser.options/ocrconnectorbase/recognizetextareas#recognizetextareas)(StreamSizeOcrOptions) | Recognize text areas from *imageStream* stream. |
30-
| virtual [RecognizeTextAreas](../../groupdocs.parser.options/ocrconnectorbase/recognizetextareas#recognizetextareas_1)(StreamintSizeOcrOptions) | Recognize text areas from *imageStream* stream. |
29+
| virtual [RecognizeTextAreas](../../groupdocs.parser.options/ocrconnectorbase/recognizetextareas#recognizetextareas)(StreamPageOcrOptions) | Recognize text areas from *imageStream* stream. |
30+
| virtual [RecognizeTextAreas](../../groupdocs.parser.options/ocrconnectorbase/recognizetextareas#recognizetextareas_3)(StreamIEnumerable<Rectangle>, stringPageOcrOptions) | Recognize text areas from *imageStream* stream. |
3131

3232
### See Also
3333

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/ocrconnectorbase/recognizetextareas/_index.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,19 @@ type: docs
66
weight: 40
77
url: /net/groupdocs.parser.options/ocrconnectorbase/recognizetextareas/
88
---
9-
## RecognizeTextAreas(Stream, int, Size, OcrOptions) {#recognizetextareas_1}
9+
## RecognizeTextAreas(Stream, Page, OcrOptions) {#recognizetextareas}
1010

1111
Recognize text areas from *imageStream* stream.
1212

1313
```csharp
14-
public virtual IList<PageTextArea> RecognizeTextAreas(Stream imageStream, int pageIndex,
15-
Size pageSize, OcrOptions options)
14+
public virtual IList<PageTextArea> RecognizeTextAreas(Stream imageStream, Page page,
15+
OcrOptions options)
1616
```
1717

1818
| Parameter | Type | Description |
1919
| --- | --- | --- |
2020
| imageStream | Stream | The image representation of the document page. |
21-
| pageIndex | Int32 | The page index of the document. |
22-
| pageSize | Size | The size of the document page. |
21+
| page | Page | The the document page. |
2322
| options | OcrOptions | The OCR options. |
2423

2524
### Return Value
@@ -29,27 +28,29 @@ A collection of [`PageTextArea`](../../../groupdocs.parser.data/pagetextarea) ob
2928
### See Also
3029

3130
* class [PageTextArea](../../../groupdocs.parser.data/pagetextarea)
32-
* class [Size](../../../groupdocs.parser.data/size)
31+
* class [Page](../../../groupdocs.parser.data/page)
3332
* class [OcrOptions](../../ocroptions)
3433
* class [OcrConnectorBase](../../ocrconnectorbase)
3534
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
3635
* assembly [GroupDocs.Parser](../../../)
3736

3837
---
3938

40-
## RecognizeTextAreas(Stream, Size, OcrOptions) {#recognizetextareas}
39+
## RecognizeTextAreas(Stream, IEnumerable&lt;Rectangle&gt;, string, Page, OcrOptions) {#recognizetextareas_3}
4140

4241
Recognize text areas from *imageStream* stream.
4342

4443
```csharp
45-
public virtual IList<PageTextArea> RecognizeTextAreas(Stream imageStream, Size pageSize,
46-
OcrOptions options)
44+
public virtual IList<PageTextArea> RecognizeTextAreas(Stream imageStream,
45+
IEnumerable<Rectangle> rectangles, string allowedSymbols, Page page, OcrOptions options)
4746
```
4847

4948
| Parameter | Type | Description |
5049
| --- | --- | --- |
5150
| imageStream | Stream | The image representation of the document page. |
52-
| pageSize | Size | The size of the document page. |
51+
| rectangles | IEnumerable`1 | The collection of rectangular areas that limits the OCR functionality. |
52+
| allowedSymbols | String | The filter of allowed symbols by OCR. |
53+
| page | Page | The the document page. |
5354
| options | OcrOptions | The OCR options. |
5455

5556
### Return Value
@@ -59,7 +60,8 @@ A collection of [`PageTextArea`](../../../groupdocs.parser.data/pagetextarea) ob
5960
### See Also
6061

6162
* class [PageTextArea](../../../groupdocs.parser.data/pagetextarea)
62-
* class [Size](../../../groupdocs.parser.data/size)
63+
* class [Rectangle](../../../groupdocs.parser.data/rectangle)
64+
* class [Page](../../../groupdocs.parser.data/page)
6365
* class [OcrOptions](../../ocroptions)
6466
* class [OcrConnectorBase](../../ocrconnectorbase)
6567
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: ParseByTemplateOptions
3+
second_title: GroupDocs.Parser for .NET API Reference
4+
description: Provides the options which are used to parse by template.
5+
type: docs
6+
weight: 670
7+
url: /net/groupdocs.parser.options/parsebytemplateoptions/
8+
---
9+
## ParseByTemplateOptions class
10+
11+
Provides the options which are used to parse by template.
12+
13+
```csharp
14+
public class ParseByTemplateOptions
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [ParseByTemplateOptions](parsebytemplateoptions#constructor)(bool) | Initializes a new instance of the [`ParseByTemplateOptions`](../parsebytemplateoptions) class with the OCR usage option. |
22+
| [ParseByTemplateOptions](parsebytemplateoptions#constructor_1)(bool, OcrOptions) | Initializes a new instance of the [`ParseByTemplateOptions`](../parsebytemplateoptions) class with the ability to set OCR options. |
23+
24+
## Properties
25+
26+
| Name | Description |
27+
| --- | --- |
28+
| [OcrOptions](../../groupdocs.parser.options/parsebytemplateoptions/ocroptions) { get; } | Gets the additional options for OCR functionality. |
29+
| [UseOcr](../../groupdocs.parser.options/parsebytemplateoptions/useocr) { get; } | Gets the value that indicates whether the OCR Connector is used to parse by template. |
30+
31+
### See Also
32+
33+
* namespace [GroupDocs.Parser.Options](../../groupdocs.parser.options)
34+
* assembly [GroupDocs.Parser](../../)
35+
36+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: OcrOptions
3+
second_title: GroupDocs.Parser for .NET API Reference
4+
description: Gets the additional options for OCR functionality.
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.parser.options/parsebytemplateoptions/ocroptions/
8+
---
9+
## ParseByTemplateOptions.OcrOptions property
10+
11+
Gets the additional options for OCR functionality.
12+
13+
```csharp
14+
public OcrOptions OcrOptions { get; }
15+
```
16+
17+
### Property Value
18+
19+
An instance of `OcrOptions` class with the additional OCR options.
20+
21+
### See Also
22+
23+
* class [OcrOptions](../../ocroptions)
24+
* class [ParseByTemplateOptions](../../parsebytemplateoptions)
25+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
26+
* assembly [GroupDocs.Parser](../../../)
27+
28+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: ParseByTemplateOptions
3+
second_title: GroupDocs.Parser for .NET API Reference
4+
description: Initializes a new instance of the ParseByTemplateOptionsgroupdocs.parser.options/parsebytemplateoptions class with the OCR usage option.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.parser.options/parsebytemplateoptions/parsebytemplateoptions/
8+
---
9+
## ParseByTemplateOptions(bool) {#constructor}
10+
11+
Initializes a new instance of the [`ParseByTemplateOptions`](../../parsebytemplateoptions) class with the OCR usage option.
12+
13+
```csharp
14+
public ParseByTemplateOptions(bool useOcr)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| useOcr | Boolean | The value that indicates whether the OCR functionality is used to parse by template. |
20+
21+
### See Also
22+
23+
* class [ParseByTemplateOptions](../../parsebytemplateoptions)
24+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
25+
* assembly [GroupDocs.Parser](../../../)
26+
27+
---
28+
29+
## ParseByTemplateOptions(bool, OcrOptions) {#constructor_1}
30+
31+
Initializes a new instance of the [`ParseByTemplateOptions`](../../parsebytemplateoptions) class with the ability to set OCR options.
32+
33+
```csharp
34+
public ParseByTemplateOptions(bool useOcr, OcrOptions ocrOptions)
35+
```
36+
37+
| Parameter | Type | Description |
38+
| --- | --- | --- |
39+
| useOcr | Boolean | The value that indicates whether the OCR functionality is used to parse by template. |
40+
| ocrOptions | OcrOptions | The additional options for OCR functionality. |
41+
42+
### See Also
43+
44+
* class [OcrOptions](../../ocroptions)
45+
* class [ParseByTemplateOptions](../../parsebytemplateoptions)
46+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
47+
* assembly [GroupDocs.Parser](../../../)
48+
49+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: UseOcr
3+
second_title: GroupDocs.Parser for .NET API Reference
4+
description: Gets the value that indicates whether the OCR Connector is used to parse by template.
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.parser.options/parsebytemplateoptions/useocr/
8+
---
9+
## ParseByTemplateOptions.UseOcr property
10+
11+
Gets the value that indicates whether the OCR Connector is used to parse by template.
12+
13+
```csharp
14+
public bool UseOcr { get; }
15+
```
16+
17+
### Property Value
18+
19+
`true` if the OCR functionality is used; otherwise, `false`.
20+
21+
### See Also
22+
23+
* class [ParseByTemplateOptions](../../parsebytemplateoptions)
24+
* namespace [GroupDocs.Parser.Options](../../../groupdocs.parser.options)
25+
* assembly [GroupDocs.Parser](../../../)
26+
27+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.parser.dll -->

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/parsersettings/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ParserSettings
33
second_title: GroupDocs.Parser for .NET API Reference
44
description: Provides the settings which are used to customize data extraction.
55
type: docs
6-
weight: 670
6+
weight: 680
77
url: /net/groupdocs.parser.options/parsersettings/
88
---
99
## ParserSettings class

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/previewoptions.previewformats/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PreviewOptions.PreviewFormats
33
second_title: GroupDocs.Parser for .NET API Reference
44
description: Represents supported preview formats.
55
type: docs
6-
weight: 690
6+
weight: 700
77
url: /net/groupdocs.parser.options/previewoptions.previewformats/
88
---
99
## PreviewOptions.PreviewFormats enumeration

content/sites/groupdocs/parser/english/net/groupdocs.parser.options/previewoptions/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PreviewOptions
33
second_title: GroupDocs.Parser for .NET API Reference
44
description: Provides options to sets requirements and stream delegates for preview generation.
55
type: docs
6-
weight: 680
6+
weight: 690
77
url: /net/groupdocs.parser.options/previewoptions/
88
---
99
## PreviewOptions class

0 commit comments

Comments
 (0)