I am having trouble reading barcodes via a PWA on a mobile device? Is there a way I can improve the image before I send? or a specific height and width in px that works best?
I am currently using
byte[] bytes = Convert.FromBase64String(rawfile);
using (MemoryStream ms = new MemoryStream(bytes))
{
using (BarCodeReader read = new BarCodeReader())
{
read.SetBarCodeImage(ms);
foreach (BarCodeResult result in read.ReadBarCodes())
{
returnBarcodes = (result.CodeText) + “\r\n” + returnBarcodes;