// The QRDecoder converts byte array to text string the class using this conversion
- public static string ByteArrayToStr(byte[] DataArray) {
- Decoder = Encoding.UTF8.GetDecoder();
- int CharCount = Decoder.GetCharCount(DataArray, 0, DataArray.Length);
- char[] CharArray = new char[CharCount];
- Decoder.GetChars(DataArray, 0, DataArray.Length, CharArray, 0);
- return new string(CharArray);
- }
it is converting byte to string ...can anyone tell me how is it working
Maen BadwanPosted Aug 8, 2019, 8:52 AM
https://www.leadtools.com/help/leadtools/v20/dh/ba/barcodereader.html
Also, you can use the .NET cloud services from LEADTOOLS to extract (read) barcodes from images. For details see this link:
https://services.leadtools.com/documentation/tutorials
Sonu GuptaPosted Aug 8, 2019, 12:06 AM
Amit KumarPosted Aug 7, 2019, 10:26 PM
Rajanikant HawaldarPosted Aug 7, 2019, 8:27 PM
Sapna GirishPosted Aug 7, 2019, 8:18 PM