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 Document.
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 Documents Library.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms.DocumentWriters;
using Leadtools.Svg;
using LeadtoolsExamples.Common;
using Leadtools.Documents;
using Leadtools.Caching;
using Leadtools.Annotations.Core;
using Leadtools.Forms.Ocr;
using Leadtools.Barcode;
private static void DocumentBarcodesExample()
{
var options = new LoadDocumentOptions();
// Create a document from the barcode sample image shipping with LEADTOOLS
using (var document = DocumentFactory.LoadFromFile(Path.Combine(ImagesPath.Path, "Barcode1.tif"), options))
{
// Setup a barcode reader object
var barcodeEngine = new BarcodeEngine();
// Optionally, setup the reader option. Here we instruct the barcode reader to read all types of barcodes
barcodeEngine.Reader.ImageType = BarcodeImageType.Unknown;
// Set this engine to be used with the document
document.Barcodes.BarcodeEngine = barcodeEngine;
// Read all the barcodes in the first page
var 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);
}
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Forms.DocumentWriters
Imports Leadtools.Svg
Imports Leadtools.Documents
Imports Leadtools.Caching
Imports Leadtools.Annotations.Core
Imports Leadtools.Barcode
Imports Leadtools.Forms.Ocr
Imports LeadtoolsDocumentsExamples.LeadtoolsExamples.Common
'Imports LeadtoolsDocumentsExamples.LeadtoolsExamples.Common
Private Shared Sub DocumentBarcodesExample()
Dim options As New LoadDocumentOptions()
' Create a document from the barcode sample image shipping with LEADTOOLS
Using document As Document = DocumentFactory.LoadFromFile(Path.Combine(ImagesPath.Path, "Barcode1.tif"), options)
' Setup a barcode reader object
Dim barcodeEngine As New BarcodeEngine()
' Optionally, setup the reader option. Here we instruct the barcode reader to read all types of barcodes
barcodeEngine.Reader.ImageType = BarcodeImageType.Unknown
' Set this engine to be used with the document
document.Barcodes.BarcodeEngine = barcodeEngine
' Read all the barcodes in the first page
Dim page As Leadtools.Documents.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 barcodes
Console.WriteLine(" type {0} data {1}", barcode.Symbology, barcode.Value)
Next
End Using
End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET