Aspose::BarCode::ComplexBarcode::HIBCLICCombinedCodetext class
Contents
[
Hide
]HIBCLICCombinedCodetext class
Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary and secodary data.
class HIBCLICCombinedCodetext : public Aspose::BarCode::ComplexBarcode::HIBCLICComplexCodetext
Methods
Method | Description |
---|---|
Equals(System::SharedPtr<System::Object>) override | Returns a value indicating whether this instance is equal to a specified HIBCLICCombinedCodetext value. |
get_BarcodeType() | Gets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. |
get_PrimaryData() const | Identifies primary data. |
get_SecondaryAndAdditionalData() const | Identifies secondary and additional supplemental data. |
GetBarcodeType() override | Gets barcode type. |
GetConstructedCodetext() override | Constructs codetext. |
GetHashCode() const override | Returns the hash code for this instance. |
HIBCLICComplexCodetext() | |
InitFromString(System::String) override | Initializes instance from constructed codetext. |
set_BarcodeType(System::SharedPtr<Aspose::BarCode::Generation::BaseEncodeType>) | Sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. |
set_PrimaryData(System::SharedPtr<Aspose::BarCode::ComplexBarcode::PrimaryData>) | Identifies primary data. |
set_SecondaryAndAdditionalData(System::SharedPtr<Aspose::BarCode::ComplexBarcode::SecondaryAndAdditionalData>) | Identifies secondary and additional supplemental data. |
Remarks
This sample shows how to encode and decode HIBC LIC using HIBCLICCombinedCodetext.
[C#]
HIBCLICCombinedCodetext combinedCodetext = new HIBCLICCombinedCodetext();
combinedCodetext.BarcodeType = EncodeTypes.HIBCQRLIC;
combinedCodetext.PrimaryData = new PrimaryData();
combinedCodetext.PrimaryData.ProductOrCatalogNumber = "12345";
combinedCodetext.PrimaryData.LabelerIdentificationCode = "A999";
combinedCodetext.PrimaryData.UnitOfMeasureID = 1;
combinedCodetext.SecondaryAndAdditionalData = new SecondaryAndAdditionalData();
combinedCodetext.SecondaryAndAdditionalData.ExpiryDate = DateTime.Now;
combinedCodetext.SecondaryAndAdditionalData.ExpiryDateFormat = HIBCLICDateFormat.MMDDYY;
combinedCodetext.SecondaryAndAdditionalData.Quantity = 30;
combinedCodetext.SecondaryAndAdditionalData.LotNumber = "LOT123";
combinedCodetext.SecondaryAndAdditionalData.SerialNumber = "SERIAL123";
combinedCodetext.SecondaryAndAdditionalData.DateOfManufacture = DateTime.Now;
using (ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(combinedCodetext))
{
Bitmap image = generator.GenerateBarCodeImage();
using (BarCodeReader reader = new BarCodeReader(image, DecodeType.HIBCQRLIC))
{
reader.ReadBarCodes();
string codetext = reader.FoundBarCodes[0].CodeText;
HIBCLICCombinedCodetext result = (HIBCLICCombinedCodetext)ComplexCodetextReader.TryDecodeHIBCLIC(codetext);
Console.WriteLine("Product or catalog number: " + result.PrimaryData.ProductOrCatalogNumber);
Console.WriteLine("Labeler identification code: " + result.PrimaryData.LabelerIdentificationCode);
Console.WriteLine("Unit of measure ID: " + result.PrimaryData.UnitOfMeasureID);
Console.WriteLine("Expiry date: " + result.SecondaryAndAdditionalData.ExpiryDate);
Console.WriteLine("Quantity: " + result.SecondaryAndAdditionalData.Quantity);
Console.WriteLine("Lot number: " + result.SecondaryAndAdditionalData.LotNumber);
Console.WriteLine("Serial number: " + result.SecondaryAndAdditionalData.SerialNumber);
Console.WriteLine("Date of manufacture: " + result.SecondaryAndAdditionalData.DateOfManufacture);
}
}
See Also
- Class HIBCLICComplexCodetext
- Namespace Aspose::BarCode::ComplexBarcode
- Library Aspose.BarCode for C++