method
BarcodeGenerator::SetCodeText(System::ArrayPtr<uint8_t>) method
Set codetext as sequence of bytes.
void Aspose::BarCode::Generation::BarcodeGenerator::SetCodeText(System::ArrayPtr<uint8_t> codeBytes)
| Parameter | Type | Description |
|---|---|---|
| codeBytes | System::ArrayPtr<uint8_t> | Bytes of codetext |
See Also
- Class BarcodeGenerator
- Namespace Aspose::BarCode::Generation
- Library Aspose.BarCode for C++
BarcodeGenerator::SetCodeText(System::String, System::SharedPtr<System::Text::Encoding>) method
void Aspose::BarCode::Generation::BarcodeGenerator::SetCodeText(System::String codeText, System::SharedPtr<System::Text::Encoding> encoding)
| Parameter | Type | Description |
|---|---|---|
| codeText | System::String | CodeText string |
| encoding | System::SharedPtr<System::Text::Encoding> | Applied encoding |
Remarks
Encodes the Unicode codeText into a byte sequence using the specified encoding. UTF-8 is the most commonly used encoding.
If the encoding supports it, the function automatically inserts a byte order mark (BOM).
This function is intended for use with 2D barcodes only (e.g., Aztec, QR, DataMatrix, PDF417, MaxiCode, DotCode, HanXin, RectMicroQR, etc.). It enables manual encoding of Unicode text using national or special encodings; however, this method is considered obsolete in modern applications. For modern use cases, ECI encoding is recommended for Unicode data.
Using this function with 1D barcodes, GS1-compliant barcodes (including 2D), or HIBC barcodes (including 2D) is not supported by the corresponding barcode standards and may lead to unpredictable results.
This example shows how to use SetCodeText setting Unicode-encoded text for 2D barcodes using different encodings:
[C#]
//Encode QR Code text using UTF-8 with BOM
using (BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR))
{
gen.SetCodeText("車種名", Encoding.UTF8);
gen.Save("barcode.png", BarCodeImageFormat.Png);
}
using (BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.QR))
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine("BarCode CodeText: " + result.CodeText);
//Encode DataMatrix text using Shift-JIS (Japanese encoding)
using (BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.DataMatrix))
{
gen.SetCodeText("車種名", Encoding.GetEncoding(932));
gen.Save("barcode.png", BarCodeImageFormat.Png);
}
using (BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.DataMatrix))
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine("BarCode CodeText: " + result.GetCodeText(Encoding.GetEncoding(932)));
See Also
- Class BarcodeGenerator
- Namespace Aspose::BarCode::Generation
- Library Aspose.BarCode for C++
BarcodeGenerator::SetCodeText(System::String, System::SharedPtr<System::Text::Encoding>, bool) method
void Aspose::BarCode::Generation::BarcodeGenerator::SetCodeText(System::String codeText, System::SharedPtr<System::Text::Encoding> encoding, bool insertBOM)
| Parameter | Type | Description |
|---|---|---|
| codeText | System::String | CodeText string |
| encoding | System::SharedPtr<System::Text::Encoding> | Applied encoding |
| insertBOM | bool | Indicates whether to insert a byte order mark (BOM) when the specified encoding supports it (e.g., UTF-8, UTF-16, UTF-32). If set to true, the BOM is added; if false, the BOM is omitted even if the encoding normally uses one. |
Remarks
Encodes the Unicode codeText into a byte sequence using the specified encoding. UTF-8 is the most commonly used encoding.
If the encoding supports it and insertBOM is set to true, the function includes a byte order mark (BOM).
This function is intended for use with 2D barcodes only (e.g., Aztec, QR, DataMatrix, PDF417, MaxiCode, DotCode, HanXin, RectMicroQR, etc.). It enables manual encoding of Unicode text using national or special encodings; however, this method is considered obsolete in modern applications. For modern use cases, ECI encoding is recommended for Unicode data.
Using this function with 1D barcodes, GS1-compliant barcodes (including 2D), or HIBC barcodes (including 2D) is not supported by the corresponding barcode standards and may lead to unpredictable results.
This example shows how to use SetCodeText with or without a BOM for 2D barcodes.
[C#]
//Encode codetext using UTF-8 with BOM
using (BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR))
{
gen.SetCodeText("車種名", Encoding.UTF8, true);
gen.Save("barcode.png", BarCodeImageFormat.Png);
}
using (BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.QR))
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine("BarCode CodeText: " + result.CodeText);
//Encode codetext using UTF-8 without BOM
using (BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR))
{
gen.SetCodeText("車種名", Encoding.UTF8, false);
gen.Save("barcode.png", BarCodeImageFormat.Png);
}
using (BarCodeReader reader = new BarCodeReader("barcode.png", DecodeType.QR))
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine("BarCode CodeText: " + result.CodeText);
See Also
- Class BarcodeGenerator
- Namespace Aspose::BarCode::Generation
- Library Aspose.BarCode for C++