- Recognize Aztec Code barcode information from stream object, bitmap object and file at the disk
- Scan and return all Aztec Code 2d barcode data from one image file at a time
- Only read Aztec Code information if there are other types of barcode in image source
- Support decoding Aztec Code from most popular used raster image formats (Png, Tiff/Tif, Jpeg/Jpg, Bmp, Gif)
- The image source can be from your database, the picture at your pc, webcam or camera photo
How to Scan Aztec Code in .NET
Aztec Code barcode is a two-dimensional barcode symbology that is published as ISO/IEC 24778:2008 standard. In now world, Aztec Code is widely used in airline transport, governmental and commercial.
pqScan .NET Barcode Reader Component provides mature APIs for reading Aztec Code barcode image in Visual Studio .NET windows and web applications. With the help of our Barcode Scanner SDK for .NET, it's an easy task to decode and recognize Aztec Code using C# and VB.NET.
Please look at the following six barcode reading and recognition methods for .NET programs. Choose suitable API to detect and find Aztec Code bar code from loaded image source and decode it. Simple and easy! No matter the barcodes in any positon of the source image graphs, pqScan .net barcode reader can scan them out.
// Recognize Aztec Code information from Bitmap object. public static BarcodeResult[] Scan(Bitmap bitmap); // Scan and read Aztec Code from Stream object. public static BarcodeResult[] Scan(Stream stream); // Decode and read Aztec Code from local file. public static BarcodeResult[] Scan(string filename); // Select to read and detect Aztec Code only from Bitmap object. public static BarcodeResult[] Scan(Bitmap bitmap, BarCodeType barType); // Select to scan and decode Aztec Code only from Stream object. public static BarcodeResult[] Scan(Stream stream, BarCodeType barType); // Select read and recognize Aztec Code only from file at disk. public static BarcodeResult[] Scan(string filename, BarCodeType barType); // Read barcode from Bitmap object. It's suitable when there's only one barcode on image (more accurate). public static BarcodeResult ScanSingle(Bitmap bitmap); // Read barcode from Stream object. It's suitable when there's only one barcode on image (more accurate). public static BarcodeResult ScanSingle(Stream stream); // Read barcode from local image file. It's suitable when there's only one barcode on image (more accurate). public static BarcodeResult ScanSingle(string filename);
Currently, reading Aztec Code from PDF document is also supported with the help of pqScan PDF to Image Conversion SDK. First, .NET developers need to convert PDF document pages to images, and then scan and decode Aztec Code from the converted images. For more details, you can see How to read barcode from PDF in .NET, C#.NET.