Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions netherlands/androidjava/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Aspose.BarCode for Android via Java
type: docs
weight: 12
url: /nl/androidjava/
description: Aspose.BarCode for Android via Java API-referenties bevatten voorbeelden, codefragmenten en API-documentatie. Het biedt pakketten, klassen, interfaces en andere API-details.
is_root: true
---
## Packages
| Pakket | Beschrijving |
| --- | --- |
| [com.aspose.barcode](./com.aspose.barcode) | Dit pakket bevat klassen met algemene doeleinden voor het genereren en tekenen van barcodes. |
| [com.aspose.barcode.barcoderecognition](./com.aspose.barcode.barcoderecognition) | Dit pakket bevat tools voor 1D/2D barcodeherkenning. |
| [com.aspose.barcode.complexbarcode](./com.aspose.barcode.complexbarcode) | Dit pakket bevat tools voor het verwerken van complexe barcodes. |
| [com.aspose.barcode.component.barcodescanner](./com.aspose.barcode.component.barcodescanner) | |
| [com.aspose.barcode.component.barcodescanner.recognitionareaview](./com.aspose.barcode.component.barcodescanner.recognitionareaview) | |
| [com.aspose.barcode.generation](./com.aspose.barcode.generation) | Dit pakket bevat tools voor het genereren van barcodes. |
| [com.aspose.barcode.metered](./com.aspose.barcode.metered) | Dit pakket biedt functionaliteit die verband houdt met de metered billing-service. |
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
title: com.aspose.barcode.barcoderecognition
second_title: Aspose.BarCode for Android via Java API-referentie
description: Dit pakket bevat tools voor 1D/2D barcodeherkenning.
type: docs
weight: 11
url: /nl/androidjava/com.aspose.barcode.barcoderecognition/
---

Dit pakket bevat tools voor 1D/2D barcodeherkenning.


## Klassen

| Klasse | Beschrijving |
| --- | --- |
| [AustraliaPostSettings](../com.aspose.barcode.barcoderecognition/australiapostsettings) | AustraliaPost-decoderingparameters. |
| [AustraliaPostSettingsInternal](../com.aspose.barcode.barcoderecognition/australiapostsettingsinternal) | |
| [AztecExtendedParameters](../com.aspose.barcode.barcoderecognition/aztecextendedparameters) | Slaat speciale gegevens op van de herkende Aztec-barcode |
| [BarCodeConfidence](../com.aspose.barcode.barcoderecognition/barcodeconfidence) | Bevat het herkenningsvertrouwensniveau |
| [BarCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/barcodeextendedparameters) | Slaat uitgebreide parameters op van de herkende barcode |
| [BarCodeReader](../com.aspose.barcode.barcoderecognition/barcodereader) | BarCodeReader omvat een afbeelding die één of meerdere barcodes kan bevatten; deze kan vervolgens de ReadBarCodes-bewerking uitvoeren om barcodes te detecteren. |
| [BarCodeRecognitionException](../com.aspose.barcode.barcoderecognition/barcoderecognitionexception) | Algemene uitzondering gegooid door BarCodeReader, geërfd van BarCodeException |
| [BarCodeRegionParameters](../com.aspose.barcode.barcoderecognition/barcoderegionparameters) | Stelt de regio en hoek van de herkende barcode voor |
| [BarCodeResult](../com.aspose.barcode.barcoderecognition/barcoderesult) | Slaat herkende barcode-gegevens op zoals type SingleDecodeType, string codetext, BarCodeRegionParameters regio en andere parameters |
| [BarCodeResultInternalCalls](../com.aspose.barcode.barcoderecognition/barcoderesultinternalcalls) | |
| [BarcodeSettings](../com.aspose.barcode.barcoderecognition/barcodesettings) | De belangrijkste BarCode-decoderingparameters. |
| [BarcodeSettingsInternal](../com.aspose.barcode.barcoderecognition/barcodesettingsinternal) | |
| [BarcodeSvmDetectorSettings](../com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings) | Barcode-detectorinstellingen. |
| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Basisklasse voor MultiDecodeType en SingleDecodeType. |
| [BaseExtendedParameters](../com.aspose.barcode.barcoderecognition/baseextendedparameters) | Basis-klasse voor het opslaan van uitgebreide parameters van de herkende barcode |
| [CodabarExtendedParameters](../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Slaat aanvullende informatie van Codabar op voor de herkende barcode |
| [Code128DataPortion](../com.aspose.barcode.barcoderecognition/code128dataportion) | Bevat de gegevens van de subtype voor Code128-type barcode |
| [Code128DataPortionInternal](../com.aspose.barcode.barcoderecognition/code128dataportioninternal) | |
| [Code128ExtendedParameters](../com.aspose.barcode.barcoderecognition/code128extendedparameters) | Slaat speciale gegevens op van de herkende Code128 barcode |
| [Code128SubType](../com.aspose.barcode.barcoderecognition/code128subtype) | Bevat typen van de Code128‑subset |
| [DataBarExtendedParameters](../com.aspose.barcode.barcoderecognition/databarextendedparameters) | Slaat extra DataBar-informatie op van de herkende barcode BarCodeReader reader = new BarCodeReader("test.png", DecodeType.DATABAR\_OMNI\_DIRECTIONAL); for(BarCodeResult result : reader.readBarCodes()) System.out.println("BarCode Type: " + result.getCodeTypeName()); System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity()); |
| [DataMatrixExtendedParameters](../com.aspose.barcode.barcoderecognition/datamatrixextendedparameters) | Slaat speciale gegevens op van de herkende DataMatrix barcode |
| [DecodeType](../com.aspose.barcode.barcoderecognition/decodetype) | Specificeer het type barcode om te lezen. |
| [DotCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | Slaat speciale gegevens op van de herkende DotCode barcode |
| [GS1CompositeBarExtendedParameters](../com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters) | Slaat speciale gegevens op van de herkende **GS1 Composite Bar** barcode |
| [ImageScalingModeInternal](../com.aspose.barcode.barcoderecognition/imagescalingmodeinternal) | |
| [MaxiCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Slaat extra MaxiCode‑informatie op van de herkende barcode |
| [MultiDecodeType](../com.aspose.barcode.barcoderecognition/multidecodetype) | Samengestelde decodeertype. |
| [MultyDecodeType](../com.aspose.barcode.barcoderecognition/multydecodetype) | Samengestelde decodeertype. |
| [OneDExtendedParameters](../com.aspose.barcode.barcoderecognition/onedextendedparameters) | Slaat speciale gegevens op van de herkende 1D barcode, zoals afzonderlijke codetekst en controlesom |
| [Pdf417ExtendedParameters](../com.aspose.barcode.barcoderecognition/pdf417extendedparameters) | Slaat macro‑Pdf417‑metadata‑informatie op van de herkende barcode |
| [ProcessorSettings](../com.aspose.barcode.barcoderecognition/processorsettings) | ProcessorSettings maakt het mogelijk om barcodes te herkennen met multi‑threaded prestatieverbetering |
| [QRExtendedParameters](../com.aspose.barcode.barcoderecognition/qrextendedparameters) | Slaat QR Structured Append‑informatie op van de herkende barcode |
| [Quadrangle](../com.aspose.barcode.barcoderecognition/quadrangle) | Slaat een set van vier punten op die een vierhoekig gebied vertegenwoordigen. |
| [QualitySettings](../com.aspose.barcode.barcoderecognition/qualitysettings) | QualitySettings maakt het mogelijk om de herkenningskwaliteit en -snelheid handmatig te configureren. |
| [QualitySettingsInternal](../com.aspose.barcode.barcoderecognition/qualitysettingsinternal) | |
| [RecognitionAbortedException](../com.aspose.barcode.barcoderecognition/recognitionabortedexception) | Stelt een herkennings‑abort‑exception voor die wordt gegooid bij het overschrijden van de time‑out tijdens herkenning met BarCodeReader. |
| [RecognitionOptions](../com.aspose.barcode.barcoderecognition/recognitionoptions) | |
| [SingleDecodeType](../com.aspose.barcode.barcoderecognition/singledecodetype) | Enkel decodeertype. |
| [TextEncodingDetection](../com.aspose.barcode.barcoderecognition/textencodingdetection) | |

## Interfaces

| Interface | Beschrijving |
| --- | --- |
| [AustraliaPostCustomerInformationDecoder](../com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder) | Publieke interface voor het decoderen van Customer Information Field die wordt gebruikt in AustraliaPost‑symbologie. |

## Enumeraties

| Enum | Beschrijving |
| --- | --- |
| [BarcodeQualityMode](../com.aspose.barcode.barcoderecognition/barcodequalitymode) | |
| [ChecksumValidation](../com.aspose.barcode.barcoderecognition/checksumvalidation) | |
| [ComplexBackgroundMode](../com.aspose.barcode.barcoderecognition/complexbackgroundmode) | |
| [CustomerInformationInterpretingType](../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | Definieert het interpretatietype (C\_TABLE of N\_TABLE) van klantinformatie voor AustralianPost‑barcode. |
| [DeconvolutionMode](../com.aspose.barcode.barcoderecognition/deconvolutionmode) | |
| [ImageScalingMode](../com.aspose.barcode.barcoderecognition/imagescalingmode) | Specificeer de grootte van de geschaalde afbeelding |
| [InverseImageMode](../com.aspose.barcode.barcoderecognition/inverseimagemode) | |
| [XDimensionMode](../com.aspose.barcode.barcoderecognition/xdimensionmode) | |
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: AustraliaPostCustomerInformationDecoder
second_title: Aspose.BarCode for Android via Java API-referentie
description: Publieke interface voor het decoderen van Customer Information Field die wordt gebruikt in AustraliaPost‑symbologie.
type: docs
weight: 50
url: /nl/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/
---```
public interface AustraliaPostCustomerInformationDecoder
```

Public interface for Customer Information Field decoding which is used in AustraliaPost symbology. Implementation should be provided by user.
## Methods

| Method | Description |
| --- | --- |
| [decode(String customerInformationField)](#decode-java.lang.String-) | Decode Customer Information Field from AustraliaPost symbology. |
### decode(String customerInformationField) {#decode-java.lang.String-}
```
public abstract String decode(String customerInformationField)
```


Decode Customer Information Field from AustraliaPost symbology. Can be used for different data interpretation from NTable and CTable encoding. Data is provided as a row of bar values: 0, 1, 2 or 3. Example String[] N\_Table = \{ "00", "01", "02", "10", "11", "12", "20", "21", "22", "30" \}; public String decode(String customerInformationField) \{ StringBuilder bd = new StringBuilder(); for (int i = 0; customerInformationField.length > i; i += 2) \{ if (customerInformationField.length >= i + 2) \{ String tmp = customerInformationField.substring(i, i + 2); for (int j = 0; N\_Table.Length > j; j++) \{ if (N\_Table[j].equals(tmp)) \{ bd.append(j); break; \} \} \} \} return bd.toString(); \}

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| customerInformationField | java.lang.String | The Customer Information Field encoded as row of raw bar values: 0, 1, 2 or 3 |

**Returns:**
java.lang.String - the decoded Customer Information Field string
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
---
title: AustraliaPostSettings
second_title: Aspose.BarCode for Android via Java API-referentie
description: AustraliaPost-decoderingparameters.
type: docs
weight: 10
url: /nl/androidjava/com.aspose.barcode.barcoderecognition/australiapostsettings/
---
**Inheritance:**
java.lang.Object
```
public class AustraliaPostSettings
```

AustraliaPost decoding parameters. Contains parameters which make influence on recognized data of AustraliaPost symbology.
## Methods

| Method | Beschrijving |
| --- | --- |
| [equals(Object arg0)](#equals-java.lang.Object-) | |
| [getClass()](#getClass--) | |
| [getCustomerInformationDecoder()](#getCustomerInformationDecoder--) | Publieke interface voor het decoderen van Customer Information Field die wordt gebruikt in AustraliaPost‑symbologie. |
| [getCustomerInformationInterpretingType()](#getCustomerInformationInterpretingType--) | Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. |
| [getIgnoreEndingFillingPatternsForCTable()](#getIgnoreEndingFillingPatternsForCTable--) | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. |
| [hashCode()](#hashCode--) | |
| [notify()](#notify--) | |
| [notifyAll()](#notifyAll--) | |
| [setCustomerInformationDecoder(AustraliaPostCustomerInformationDecoder value)](#setCustomerInformationDecoder-com.aspose.barcode.barcoderecognition.AustraliaPostCustomerInformationDecoder-) | Publieke interface voor het decoderen van Customer Information Field die wordt gebruikt in AustraliaPost‑symbologie. |
| [setCustomerInformationInterpretingType(CustomerInformationInterpretingType value)](#setCustomerInformationInterpretingType-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-) | Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. |
| [setIgnoreEndingFillingPatternsForCTable(boolean value)](#setIgnoreEndingFillingPatternsForCTable-boolean-) | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. |
| [toString()](#toString--) | |
| [wait()](#wait--) | |
| [wait(long arg0)](#wait-long-) | |
| [wait(long arg0, int arg1)](#wait-long-int-) | |
### equals(Object arg0) {#equals-java.lang.Object-}
```
public boolean equals(Object arg0)
```




**Parameters:**
| Parameter | Type | Beschrijving |
| --- | --- | --- |
| arg0 | java.lang.Object | |

**Returns:**
boolean
### getClass() {#getClass--}
```
public final native Class<?> getClass()
```




**Returns:**
java.lang.Class<?>
### getCustomerInformationDecoder() {#getCustomerInformationDecoder--}
```
public AustraliaPostCustomerInformationDecoder getCustomerInformationDecoder()
```


Publieke interface voor het decoderen van Customer Information Field die wordt gebruikt in AustraliaPost‑symbologie.

**Returns:**
[AustraliaPostCustomerInformationDecoder](../../com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder) - Public interface for Customer Information Field decoding which is used in AustraliaPost symbology.
### getCustomerInformationInterpretingType() {#getCustomerInformationInterpretingType--}
```
public CustomerInformationInterpretingType getCustomerInformationInterpretingType()
```


Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER.

**Returns:**
[CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) - The interpreting type (CTable, NTable or Other) of customer information for AustralianPost BarCode
### getIgnoreEndingFillingPatternsForCTable() {#getIgnoreEndingFillingPatternsForCTable--}
```
public boolean getIgnoreEndingFillingPatternsForCTable()
```


De vlag die de AustraliaPost-decoder dwingt om de laatste opvulpatronen in het klantinformatieveld te negeren tijdens decodering met de CTable-methode. De CTable-coderingsmethode heeft geen gaten in de coderingtabel en de reeks "333" van opvulpatronen wordt gedecodeerd als de letter "z". Voorbeeld BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA\_POST, "5912345678AB"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C\_TABLE); Bitmap image = generator.generateBarCodeImage(); BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA\_POST); reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C\_TABLE); reader.getBarcodeSettings().getAustraliaPost().setIgnoreEndingFillingPatternsForCTable(true); for(BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode Type: " + result.getCodeType()); System.out.println("BarCode CodeText: " + result.getCodeText()); \}

**Returns:**
boolean - De vlag die de AustraliaPost-decoder dwingt om de laatste opvulpatronen te negeren tijdens decodering met de CTable-methode
### hashCode() {#hashCode--}
```
public native int hashCode()
```




**Returns:**
int
### notify() {#notify--}
```
public final native void notify()
```




### notifyAll() {#notifyAll--}
```
public final native void notifyAll()
```




### setCustomerInformationDecoder(AustraliaPostCustomerInformationDecoder value) {#setCustomerInformationDecoder-com.aspose.barcode.barcoderecognition.AustraliaPostCustomerInformationDecoder-}
```
public void setCustomerInformationDecoder(AustraliaPostCustomerInformationDecoder value)
```


Publieke interface voor het decoderen van Customer Information Field die wordt gebruikt in AustraliaPost‑symbologie.

**Parameters:**
| Parameter | Type | Beschrijving |
| --- | --- | --- |
| value | [AustraliaPostCustomerInformationDecoder](../../com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder) | |

### setCustomerInformationInterpretingType(CustomerInformationInterpretingType value) {#setCustomerInformationInterpretingType-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-}
```
public void setCustomerInformationInterpretingType(CustomerInformationInterpretingType value)
```


Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER.

**Parameters:**
| Parameter | Type | Beschrijving |
| --- | --- | --- |
| value | [CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | Het interpretatietype (CTable, NTable of Overig) van klantinformatie voor AustralianPost-barcode |

### setIgnoreEndingFillingPatternsForCTable(boolean value) {#setIgnoreEndingFillingPatternsForCTable-boolean-}
```
public void setIgnoreEndingFillingPatternsForCTable(boolean value)
```


De vlag die de AustraliaPost-decoder dwingt om de laatste opvulpatronen in het klantinformatieveld te negeren tijdens decodering met de CTable-methode. De CTable-coderingsmethode heeft geen gaten in de coderingtabel en de reeks "333" van opvulpatronen wordt gedecodeerd als de letter "z". Voorbeeld BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA\_POST, "5912345678AB"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C\_TABLE); Bitmap image = generator.generateBarCodeImage(); BarCodeReader reader = new BarCodeReader(image, DecodeType.AUSTRALIA\_POST); reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C\_TABLE); reader.getBarcodeSettings().getAustraliaPost().setIgnoreEndingFillingPatternsForCTable(true); for(BarCodeResult result : reader.readBarCodes()) \{ System.out.println("BarCode Type: " + result.getCodeType()); System.out.println("BarCode CodeText: " + result.getCodeText()); \}

**Parameters:**
| Parameter | Type | Beschrijving |
| --- | --- | --- |
| waarde | boolean | |

### toString() {#toString--}
```
public String toString()
```




**Returns:**
java.lang.String
### wait() {#wait--}
```
public final void wait()
```




### wait(long arg0) {#wait-long-}
```
public final void wait(long arg0)
```




**Parameters:**
| Parameter | Type | Beschrijving |
| --- | --- | --- |
| arg0 | long | |

### wait(long arg0, int arg1) {#wait-long-int-}
```
public final void wait(long arg0, int arg1)
```




**Parameters:**
| Parameter | Type | Beschrijving |
| --- | --- | --- |
| arg0 | long | |
| arg1 | int | |

Loading