Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This package contains tools for 1D/2D barcode recognition.
| [BarcodeSettings](../com.aspose.barcode.barcoderecognition/barcodesettings) | The main BarCode decoding parameters. |
| [BarcodeSettingsInternal](../com.aspose.barcode.barcoderecognition/barcodesettingsinternal) | |
| [BarcodeSvmDetectorSettings](../com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings) | Barcode detector settings. |
| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Base class for MultyDecodeType and SingleDecodeType. |
| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Base class for MultiDecodeType and SingleDecodeType. |
| [BaseExtendedParameters](../com.aspose.barcode.barcoderecognition/baseextendedparameters) | Basic class for extended parameters of recognized barcode storing |
| [CodabarExtendedParameters](../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Stores a Codabar additional information of recognized barcode |
| [Code128DataPortion](../com.aspose.barcode.barcoderecognition/code128dataportion) | Contains the data of subtype for Code128 type barcode |
Expand All @@ -41,6 +41,7 @@ This package contains tools for 1D/2D barcode recognition.
| [GS1CompositeBarExtendedParameters](../com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters) | Stores special data of **GS1 Composite Bar** recognized barcode |
| [ImageScalingModeInternal](../com.aspose.barcode.barcoderecognition/imagescalingmodeinternal) | |
| [MaxiCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Stores a MaxiCode additional information of recognized barcode |
| [MultiDecodeType](../com.aspose.barcode.barcoderecognition/multidecodetype) | Composite decode type. |
| [MultyDecodeType](../com.aspose.barcode.barcoderecognition/multydecodetype) | Composite decode type. |
| [OneDExtendedParameters](../com.aspose.barcode.barcoderecognition/onedextendedparameters) | Stores special data of 1D recognized barcode like separate codetext and checksum |
| [Pdf417ExtendedParameters](../com.aspose.barcode.barcoderecognition/pdf417extendedparameters) | Stores a MacroPdf417 metadata information of recognized barcode |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: AustraliaPostCustomerInformationDecoder
second_title: Aspose.BarCode for Android via Java API Reference
description: Public interface for Customer Information Field decoding which is used in AustraliaPost symbology.
type: docs
weight: 49
weight: 50
url: /androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/
---```
public interface AustraliaPostCustomerInformationDecoder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: BarcodeQualityMode
second_title: Aspose.BarCode for Android via Java API Reference
description:
type: docs
weight: 50
weight: 51
url: /androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/
---
**Inheritance:**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ BarCodeReader encapsulates an image which may contain one or several barcodes, i
| [equals(Object arg0)](#equals-java.lang.Object-) | |
| [exportToXml(OutputStream xmlStream)](#exportToXml-java.io.OutputStream-) | Exports BarCode properties to the xml-stream specified |
| [exportToXml(String xmlFile)](#exportToXml-java.lang.String-) | Exports BarCode properties to the xml-file specified |
| [getBarCodeDecodeType()](#getBarCodeDecodeType--) | Gets the decode type of the input barcode decoding |
| [getBarCodeReadType()](#getBarCodeReadType--) | Gets the decode type of the input barcode decoding |
| [getBarcodeSettings()](#getBarcodeSettings--) | The main BarCode decoding parameters. |
| [getClass()](#getClass--) | |
| [getFoundBarCodes()](#getFoundBarCodes--) | Gets recognized BarCodeResult s array |
Expand Down Expand Up @@ -176,7 +176,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> Bitmap bmp = BitmapFactory.decodeFile("test.png");
> BarCodeReader reader = new BarCodeReader(bmp, new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(bmp, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -233,7 +233,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -262,7 +262,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -291,7 +291,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -320,7 +320,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> BufferedImage bmp = ImageIO.read(new File("c:\\test.png"));
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -349,7 +349,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> Bitmap bmp = BitmapFactory.decodeFile("test.png");
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -417,7 +417,7 @@ Initializes a new instance of the BarCodeReader class.
> ```
> This sample shows how to detect Code39 and Code128 barcodes.
>
> BarCodeReader reader = new BarCodeReader("test.png", new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader("test.png", new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -500,7 +500,7 @@ Initializes a new instance of the BarCodeReader class.
> This sample shows how to detect Code39 and Code128 barcodes.
>
> InputStream fstr = new FileInputStream("test.png");
> BarCodeReader reader = new BarCodeReader(fstr, new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader(fstr, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
Expand Down Expand Up @@ -617,9 +617,9 @@ Exports BarCode properties to the xml-file specified
boolean - Whether or not export completed successfully.

Returns **True** in case of success; **False** Otherwise
### getBarCodeDecodeType() {#getBarCodeDecodeType--}
### getBarCodeReadType() {#getBarCodeReadType--}
```
public BaseDecodeType getBarCodeDecodeType()
public BaseDecodeType getBarCodeReadType()
```


Expand Down Expand Up @@ -1019,14 +1019,15 @@ Sets decode type for recognition. Must be called before ReadBarCodes() method.
> ```
> This sample shows how to detect Code39 and Code128 barcodes.
>
> BarCodeReader reader = new BarCodeReader())
> reader.setBarCodeReadType(new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> BarCodeReader reader = new BarCodeReader();
> reader.setBarCodeReadType(new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128);
> reader.setBarCodeImage("test.png");
> for(BarCodeResult result : reader.readBarCodes())
> {
> System.out.println("BarCode Type: " + result.getCodeTypeName());
> System.out.println("BarCode CodeText: " + result.getCodeText());
> }
> System.out.println("BarCodeReadType: " + reader.getBarCodeReadType().toString());
> ```

**Parameters:**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: BaseDecodeType
second_title: Aspose.BarCode for Android via Java API Reference
description: Base class for MultyDecodeType and SingleDecodeType.
description: Base class for MultiDecodeType and SingleDecodeType.
type: docs
weight: 23
url: /androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/
Expand All @@ -12,22 +12,22 @@ java.lang.Object
public abstract class BaseDecodeType
```

Base class for MultyDecodeType and SingleDecodeType.
Base class for MultiDecodeType and SingleDecodeType.

--------------------

> ```
> This sample shows how to use BaseDecodeType with SingleDecodeType and MultyDecodeType
> This sample shows how to use BaseDecodeType with SingleDecodeType and MultiDecodeType
>
> BaseDecodeType decodeOne = DecodeType.CODE_128;
> BaseDecodeType decodeTwo = new MultyDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII);
> BaseDecodeType decodeTwo = new MultiDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII);
> ```
## Methods

| Method | Description |
| --- | --- |
| [containsAny(BaseDecodeType[] types)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Determines whether any of the given decode types is included into |
| [equals(MultyDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
| [equals(Object other)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. |
| [getClass()](#getClass--) | |
Expand All @@ -36,7 +36,7 @@ Base class for MultyDecodeType and SingleDecodeType.
| [notifyAll()](#notifyAll--) | |
| [toString()](#toString--) | |
| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. |
| [tryParseMultyDecodeType(String parsingType)](#tryParseMultyDecodeType-java.lang.String-) | Converts the string representation of a MultyDecodeType to its instance. |
| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. |
| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. |
| [wait()](#wait--) | |
| [wait(long arg0)](#wait-long-) | |
Expand All @@ -56,9 +56,9 @@ Determines whether any of the given decode types is included into

**Returns:**
boolean - Value is a true if any types are included into.
### equals(MultyDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-}
### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-}
```
public boolean equals(MultyDecodeType other)
public boolean equals(MultiDecodeType other)
```


Expand All @@ -67,7 +67,7 @@ Returns a value indicating whether this instance is equal to a specified [BaseDe
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| other | [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) | An java.lang.Object value to compare to this instance. |
| other | com.aspose.barcode.barcoderecognition.MultiDecodeType | An java.lang.Object value to compare to this instance. |

**Returns:**
boolean - True if obj has the same value as this instance; otherwise, false.
Expand Down Expand Up @@ -158,29 +158,29 @@ Converts the string representation of a BaseDecodeType to its instance, having d
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. |
| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. |

**Returns:**
[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully;
[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully;

otherwise it returns indefinite type. or MultyDecodeType ("None").
### tryParseMultyDecodeType(String parsingType) {#tryParseMultyDecodeType-java.lang.String-}
otherwise it returns indefinite type. or MultiDecodeType ("None").
### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-}
```
public static MultyDecodeType tryParseMultyDecodeType(String parsingType)
public static MultiDecodeType tryParseMultiDecodeType(String parsingType)
```


Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. |
| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. |

**Returns:**
[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully;
com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully;

otherwise it returns indefinite type. or MultyDecodeType ("None").
otherwise it returns indefinite type. or MultiDecodeType ("None").
### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-}
```
public static SingleDecodeType tryParseSingleDecodeType(String parsingType)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: ChecksumValidation
second_title: Aspose.BarCode for Android via Java API Reference
description:
type: docs
weight: 51
weight: 52
url: /androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/
---
**Inheritance:**
Expand Down
Loading