Object that manages the text and OCR recognition settings of the document.
public DocumentText Text { get; } public:property DocumentText^ Text{DocumentText^ get()}
public DocumentText getText() Text # get (LEADDocument)
The DocumentText object that manages the text and OCR recognition settings of this LEADDocument.
Refer to DocumentText for more information.
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;public void DocumentTextExample(){var options = new LoadDocumentOptions();using (var document = DocumentFactory.LoadFromFile(Path.Combine(LEAD_VARS.ImagesDir, "slice.tif"), options)){//for the TIF file we need an OCR enginevar ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD);var rasterCodecs = new RasterCodecs();var documentWriter = new DocumentWriter();ocrEngine.Startup(rasterCodecs, documentWriter, null, LEAD_VARS.OcrLEADRuntimeDir);// DocumentText referencedocument.Text.OcrEngine = ocrEngine;// Get all of the DocumentTextExtractionModes (DocumentTextExtractionMode reference)DocumentTextExtractionMode[] textExtractionModes = (DocumentTextExtractionMode[])Enum.GetValues(typeof(DocumentTextExtractionMode));foreach (var modes in textExtractionModes){Console.WriteLine($"Text extraction mode: {modes}");}// get textvar page = document.Pages[0];var pageText = page.GetText();if (pageText != null){pageText.BuildText();var text = pageText.Text;Console.WriteLine(text);}else{Console.WriteLine("Failed!");}}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";public const string OcrLEADRuntimeDir = @"C:\LEADTOOLS22\Bin\Common\OcrLEADRuntime";}
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
