public override DocumentFormat Format { get; }
This property will always return DocumentFormat.AltoXml.
This property is required internally by LEADTOOLS.
using Leadtools.Document.Writer;using Leadtools;using Leadtools.Codecs;using Leadtools.Ocr;public void AltoXmlDocumentOptionsExample(){var inputFileName = Path.Combine(LEAD_VARS.ImagesDir, "ocr2.tif");var outputFileName = Path.Combine(LEAD_VARS.ImagesDir, "out_Example.xml");// Setup LEADTOOLS OCR engineusing (var ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD)){ocrEngine.Startup(null, null, null, LEAD_VARS.OcrLEADRuntimeDir);// Get the DocumentWriter instancevar docWriter = new DocumentWriter();// Change the ALTO XML optionsvar altoXmlOptions = docWriter.GetOptions(DocumentFormat.AltoXml) as AltoXmlDocumentOptions;altoXmlOptions.FileName = inputFileName;altoXmlOptions.SoftwareCreator = "LEAD";docWriter.SetOptions(DocumentFormat.AltoXml, altoXmlOptions);// Create a documentusing (var ocrDocument = ocrEngine.DocumentManager.CreateDocument()){// Add the imagevar ocrPage = ocrDocument.Pages.AddPage(inputFileName, null);// Recognize itocrPage.Recognize(null);// Save the document as ALTO XMLocrDocument.Save(outputFileName, DocumentFormat.AltoXml, null);}}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";public const string OcrLEADRuntimeDir = @"C:\LEADTOOLS22\Bin\Common\OcrLEADRuntime";}