Manages the global barcodes settings for the document.
[DataContractAttribute()]public class DocumentBarcodes
<DataContractAttribute()>Public Class DocumentBarcodes
public [DataContractAttribute]ref class DocumentBarcodes
public class DocumentBarcodes implements Serializable DocumentBarcodes manages the global barcodes settings of the document. It can be accessed through the Barcodes property of LEADDocument.
DocumentBarcodes contains the following:
The DocumentPage.ReadBarcodes method is used to read the barcodes of a page. The document will check if the value in BarcodeEngine is not null, if so, it will try to read the barcodes based on options set in BarcodeReader.
For more information, refer to Barcode processing with the Document Library.
using Leadtools;using Leadtools.Codecs;using Leadtools.Document.Writer;using Leadtools.Document;using Leadtools.Caching;using Leadtools.Annotations.Engine;using Leadtools.Ocr;using Leadtools.Barcode;using Leadtools.Document.Converter;private static void DocumentBarcodesExample(){var options = new LoadDocumentOptions();// Create a document from the barcode sample image shipping with LEADTOOLSusing (var document = DocumentFactory.LoadFromFile(Path.Combine(LEAD_VARS.ImagesDir, "Barcode1.tif"), options)){// Setup a barcode reader objectvar barcodeEngine = new BarcodeEngine();// Optionally, setup the reader option. Here we instruct the barcode reader to read all types of barcodesbarcodeEngine.Reader.ImageType = BarcodeImageType.Unknown;// Set this engine to be used with the documentdocument.Barcodes.BarcodeEngine = barcodeEngine;// Read all the barcodes in the first pagevar page = document.Pages[0];var barcodes = page.ReadBarcodes(LeadRectD.Empty, 0, null);Console.WriteLine("{0} barcode(s) found.", barcodes.Length);foreach (var barcode in barcodes)Console.WriteLine(" type {0} data {1}", barcode.Symbology, barcode.Value);}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.Document.WriterImports Leadtools.SvgImports Leadtools.DocumentImports Leadtools.CachingImports Leadtools.Annotations.EngineImports Leadtools.BarcodeImports Leadtools.OcrImports LeadtoolsDocumentExamples.LeadtoolsExamples.CommonImports Leadtools.Document.ConverterPrivate Shared Sub DocumentBarcodesExample()Dim options As New LoadDocumentOptions()' Create a document from the barcode sample image shipping with LEADTOOLSUsing document As LEADDocument = DocumentFactory.LoadFromFile(Path.Combine(ImagesPath.Path, "Barcode1.tif"), options)' Setup a barcode reader objectDim barcodeEngine As New BarcodeEngine()' Optionally, setup the reader option. Here we instruct the barcode reader to read all types of barcodesbarcodeEngine.Reader.ImageType = BarcodeImageType.Unknown' Set this engine to be used with the documentdocument.Barcodes.BarcodeEngine = barcodeEngine' Read all the barcodes in the first pageDim page As Leadtools.Document.DocumentPage = document.Pages(0)Dim barcodes() As BarcodeData = page.ReadBarcodes(LeadRectD.Empty, 0, Nothing)Console.WriteLine("{0} barcode(s) found.", barcodes.Length)For Each barcode As BarcodeData In barcodesConsole.WriteLine(" type {0} data {1}", barcode.Symbology, barcode.Value)NextEnd UsingEnd Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
