string sTifPathFile =
Directory.GetParent(
Directory.GetParent(Environment.CurrentDirectory).ToString()) +
"\\TestData\\" + sTifFile;
Bitmap bmpImage = new Bitmap(sTifPathFile);
string[] aBarcodes = BarcodeScanner.Scan(bmpTifFile, BarCodeType.Code128);
bmpImage.Dispose();
string sTifPathFile = @"c:\demo\test.tiff"
Bitmap bmpImage = new Bitmap(sTifPathFile);
string[] aBarcodes = BarcodeScanner.Scan(bmpTifFile);
bmpImage.Dispose();
stein.stephan@gmx.de wrote:I would like to pickup this old post to ask for the normal scan time of an document.
my first test takes about 30sec.!!!
Is it normal?
in my coding, i have not defined the code to read.
my code looks like this:
- Code: Select all
string sTifPathFile = @"c:\demo\test.tiff"
Bitmap bmpImage = new Bitmap(sTifPathFile);
string[] aBarcodes = BarcodeScanner.Scan(bmpTifFile);
bmpImage.Dispose();
is there some optimizing potential?
caroline.zhang wrote:Hi,
Barcode resolution will affect the scanning time. We recommend you to scan high resolution barcode image which only contains barcode data. I tested an image contained two barcodes on same horizontal line, and it only took about 1s.
Sincerely,
Caroline
E-iceblue support team