How to Use aspose. barcode to read a barcode from a multi-page TIFF image

Source: Internet
Author: User

Reading a bar code from a multi-page TIFF file is a common problem. The following is a sample code that uses aspose. barcode to solve this problem:

[C #]

12345678910111213141516171819 //Calculate the pages count
System.Drawing.Image img = Image.FromFile(@".\multi-page.tif");
Guid guid = img.FrameDimensionsList[0];
FrameDimension dimension =
new FrameDimension(guid);
int
totalFrame = img.GetFrameCount(dimension);
  //Feed the pages to BarCodeReader one by one
BarCodeReader rd =
new BarCodeReader(new
Bitmap(img)); for
(
int i = 0; i < totalFrame; i++)
{     // Set the active page and feed it to the BarCodeReader
    img.SelectActiveFrame(dimension, i);
    Console.Out.WriteLine("Page["
+ i + "]");
    while(rd.Read())
    {
        Console.Out.WriteLine("BarCode Found. CodeText: "
+ rd.GetCodeText());     }
} rd.Close();

[VB. NET]

12345678910111213141516171819 'Calculate the pages count
Dim
img
As System.Drawing.Image = Image.FromFile(".\multi-page.tif")
Dim
guid
As Guid = img.FrameDimensionsList(0)
Dim
dimension
As FrameDimension =
New FrameDimension(guid)
Dim
totalFrame
As Integer
= img.GetFrameCount(dimension)   'Feed the pages to BarCodeReader one by one
Dim
rd
As BarCodeReader =
New BarCodeReader(New
Bitmap(img)) Dim
i
As Integer
= 0 Do
While
i < totalFrame     ' Set the active page and feed it to the BarCodeReader
    img.SelectActiveFrame(dimension, i)
    Console.Out.WriteLine("Page["
& i & "]")
    Do
While rd.Read()         Console.Out.WriteLine("BarCode Found. CodeText: "
& rd.GetCodeText())     Loop    i += 1
Looprd.Close()

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.