public static void ReadMultipleFromTiffScan()
        {
            // Multi frame TIFF and GIF images can also be scanned, and multiple threads will be used automatically in the background for improved performance
            PagedBarcodeResult[] MultiFrameResults = BarcodeReader.ReadBarcodesFromMultiFrameTiff("Multiframe.tiff", BarcodeEncoding.AllOneDimensional, BarcodeReader.BarcodeRotationCorrection.High, BarcodeReader.BarcodeImageCorrection.MediumCleanPixels);

            // Work with the results
            foreach (var PageResult in MultiFrameResults)
            {
                string Value                      = PageResult.Value;
                int    PageNum                    = PageResult.PageNumber;
                System.Drawing.Bitmap Img         = PageResult.BarcodeImage;
                BarcodeEncoding       BarcodeType = PageResult.BarcodeType;
                byte[] Binary                     = PageResult.BinaryValue;
                Console.WriteLine(PageResult.Value + " on page " + PageNum);
            }
        }