QREncodeMode.Binary replaced?

Hi,

I've used the following code to create a QR code:

Aspose.BarCode.BarCodeBuilder barcode = new Aspose.BarCode.BarCodeBuilder();

MemoryStream stream = new MemoryStream();
// set property value
UTF8Encoding enc = new UTF8Encoding();
byte[] bytes = enc.GetBytes(definition.Value);

StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < bytes.Length; i++)
{
stringBuilder.Append((char)bytes[i]);
}
barcode.CodeText = stringBuilder.ToString();

// set encoder mode to binary and pass value encoded in order to allow umlauts, special characters etc.
barcode.QREncodeMode = Aspose.BarCode.QREncodeMode.Binary;


In the current release of Aspose.Barcode this doesn't work anymore. The Enum value "Binary" of QREncodeMode seems to be removed.

'Aspose.BarCode.QREncodeMode' does not contain a definition for 'Binary'.

How to replace the code above in the right way? I needed the Binary mode for getting umlauts and special characters properly to the QR code.
Hi Andreas,

Thank you for your inquiry.

Please, note that we are able to observe the same issue at our end. The issue has been logged into our issue tracking system with ID BARCODENET-34304. We will provide you updates about the progress accordingly.

Feel free to contact us in case you have further comments or queries.

The issues you have found earlier (filed as BARCODENET-34304) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.