Aspose::BarCode::ComplexBarcode::ComplexCodetextReader class
ComplexCodetextReader class
ComplexCodetextReader decodes codetext to specified complex barcode type.
class ComplexCodetextReader : public System::Object
Methods
Method | Description |
---|---|
static TryDecodeHIBCLIC(System::String) | Decodes HIBC LIC codetext. |
static TryDecodeHIBCPAS(System::String) | Decodes HIBC PAS codetext. |
static TryDecodeMailmark(System::String) | Decodes Mailmark Barcode C and L codetext. |
static TryDecodeMailmark2D(System::String) | Decodes Royal Mail Mailmark 2D codetext. |
static TryDecodeMaxiCode(Aspose::BarCode::Generation::MaxiCodeMode, System::String) | Decodes MaxiCode codetext. |
static TryDecodeSwissQR(System::String) | Decodes SwissQR codetext. |
Remarks
This sample shows how to recognize and decode SwissQR image.
[C#]
using (var cr = new BarCodeReader("SwissQRCodetext.png", DecodeType.QR))
{
cr.Read();
SwissQRCodetext result = ComplexCodetextReader.TryDecodeSwissQR(cr.GetCodeText());
}
See Also
- Namespace Aspose::BarCode::ComplexBarcode
- Library Aspose.BarCode for C++