Aspose.BarCode.Examples.CSharp.ManageAndOptimizeBarCodeRecognition.ReadMultipleMacroPdf417Barcodes.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            try
            {
                // The path to the documents directory.
                string dataDir = RunExamples.GetDataDir_ManageAndOptimizeBarcodeRecognition();
         
                // Create array for storing multiple bar codes file names
                string[] files = new string[] { "Barcodefrom.png", "Barcode2.png" };

                // Iiterate through the bar code image files
                for (int i = 0; i < files.Length; ++i)
                {
                    // Create instance of BarCodeReader class and set symbology
                    using (BarCodeReader reader = new BarCodeReader(dataDir + files[i], DecodeType.MacroPdf417))
                    {
                        if (reader.Read())
                        {
                            // Get code text, file id, segment id and segment count
                            Console.WriteLine("File Name: " + files[i] + " Code Text: " + reader.GetCodeText());
                            Console.WriteLine("FileID: " + reader.GetMacroPdf417FileID());
                            Console.WriteLine("SegmentID: " + reader.GetMacroPdf417SegmentID());
                            Console.WriteLine("Segment Count: " + reader.GetMacroPdf417SegmentsCount());
                        }
                        Console.WriteLine();
                    }
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message + "\nThis example will only work if you apply a valid Aspose BarCode License. You can purchase full license or get 30 day temporary license from http://wwww.aspose.com/purchase/default.aspx.");
            }
        }
    }
ReadMultipleMacroPdf417Barcodes