You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: net/developer-guide/advanced-usage/working-with-barcodes/extract-barcodes-from-document-page-area.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,29 +13,29 @@ toc: true
13
13
GroupDocs.Parser provides the functionality to extract barcodes from documents by the [GetBarcodes](https://reference.groupdocs.com/parser/net/groupdocs.parser.parser/getbarcodes/methods/1) method:
This method returns a collection of [PageBarcodeArea](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea) objects:
20
20
21
21
| Member | Description |
22
22
| --- | --- |
23
-
|[Page](https://reference.groupdocs.com/net/parser/groupdocs.parser.data/pagearea/properties/page)| The page that contains the text area. |
24
-
|[Rectangle](https://reference.groupdocs.com/net/parser/groupdocs.parser.data/pagearea/properties/rectangle)| The rectangular area on the page that contains the text area. |
25
-
|[Value](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/properties/value)| A string value that represents a value of the barcode page area. |
26
-
|[CodeTypeName](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/properties/codetypename)| A string value than represents a type name of the barcode. |
27
-
|[Confidence](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/confidence/)| The level of confidence of the parsered barcode. |
28
-
|[Angle](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea/angle/)| The angle of the barcode. |
23
+
|[Page](https://reference.groupdocs.com/net/parser/groupdocs.parser.data.pagearea/properties/page)| The page that contains the text area. |
24
+
|[Rectangle](https://reference.groupdocs.com/net/parser/groupdocs.parser.data.pagearea/properties/rectangle)| The rectangular area on the page that contains the text area. |
25
+
|[Value](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/properties/value)| A string value that represents a value of the barcode page area. |
26
+
|[CodeTypeName](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/properties/codetypename)| A string value than represents a type name of the barcode. |
27
+
|[Confidence](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/confidence/)| The level of confidence of the parsered barcode. |
28
+
|[Angle](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea/angle/)| The angle of the barcode. |
29
29
30
30
Here are the steps to extract all barcodes from the whole document:
31
31
32
32
- Instantiate [Parser](https://reference.groupdocs.com/net/parser/groupdocs.parser/parser) object for the initial document;
33
33
- Check if the document supports barcodes extraction;
34
34
- Instantiate [BarcodeOptions](https://reference.groupdocs.com/net/parser/groupdocs.parser.options/BarcodeOptions) with the rectangular area;
35
-
- Call [GetBarcodes](https://reference.groupdocs.com/parser/net/groupdocs.parser.parser/getbarcodes/methods/1) method and obtain collection of [PageBarcodeArea](https://reference.groupdocs.com/parser/net/groupdocs.parser.data/pagebarcodearea) objects;
35
+
- Call [GetBarcodes](https://reference.groupdocs.com/parser/net/groupdocs.parser.parser/getbarcodes/methods/1) method and obtain collection of [PageBarcodeArea](https://reference.groupdocs.com/parser/net/groupdocs.parser.data.pagebarcodearea) objects;
36
36
- Iterate through the collection and get a barcode value.
37
37
38
-
The following example shows how to extract barcodes from the upper-right corner:
38
+
The following example shows how to extract barcodes from the upper‑right corner:
0 commit comments