public void AutoZone(
OcrProgressCallback callback
)
- (BOOL)autoZonePages:(nullable LTOcrProgressHandler)progressHandler
error:(NSError **)error
public void autoZone(OcrProgressListener callback)
void AutoZone(
OcrProgressCallback^ callback
)
def AutoZone(self,callback):
callback
Optional callback to show operation progress.
For more information on auto zoning and decomposition, refer to IOcrPage.AutoZone.
This method will iterate through all the pages in this OCR document and run IOcrPage.AutoZone on each page.
You can use the OcrProgressCallback to show the operation progress or to abort it. For more information and an example, refer to OcrProgressCallback.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Ocr;
using Leadtools.Document.Writer;
using Leadtools.Forms.Common;
using Leadtools.ImageProcessing.Core;
public void PageCollectionExamples()
{
// For this example, we need a multi-page TIF file.
// Create a muti-page TIF from Ocr1.tif, Ocr2.tif, Ocr3.tif and Ocr4.tif
string tifFileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr.tif");
if (File.Exists(tifFileName))
File.Delete(tifFileName);
using (RasterCodecs codecs = new RasterCodecs())
{
for (int i = 0; i < 4; i++)
{
string pageFileName = Path.Combine(LEAD_VARS.ImagesDir, string.Format("Ocr{0}.tif", i + 1));
using (RasterImage image = codecs.Load(pageFileName))
codecs.Save(image, tifFileName, RasterImageFormat.CcittGroup4, 1, 1, 1, -1, CodecsSavePageMode.Append);
}
}
string pdfFileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr.pdf");
// Create an instance of the engine
using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD))
{
// Start the engine using default parameters
ocrEngine.Startup(null, null, null, LEAD_VARS.OcrLEADRuntimeDir);
// Create an OCR document
using (IOcrDocument ocrDocument = ocrEngine.DocumentManager.CreateDocument())
{
// Load all the pages of the multi-page tif file we created into the form
ocrDocument.Pages.AddPages(tifFileName, 1, -1, null);
Console.WriteLine("{0} pages added to the document", ocrDocument.Pages.Count);
// Auto-zone
ocrDocument.Pages.AutoZone(null);
// Recognize
ocrDocument.Pages.Recognize(null);
// Save
ocrDocument.Save(pdfFileName, DocumentFormat.Pdf, null);
}
// Shutdown the engine
// Note: calling Dispose will also automatically shutdown the engine if it has been started
ocrEngine.Shutdown();
}
}
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