public ITemplateForm CreateTemplateForm()
public ITemplateForm createTemplateForm();
Public Function CreateTemplateForm() As ITemplateForm
public:
ITemplateForm^ CreateTemplateForm()
A new object of type ITemplateForm created internally.
The following example is a snippet of a larger example project. To run the larger example project, follow the work flow laid out in the OMREngine example. You can also download the complete example in Visual Studio 2017.
using Leadtools;
using Leadtools.Barcode;
using Leadtools.Codecs;
using Leadtools.Forms.Processing.Omr;
using Leadtools.Ocr;
public static ITemplateForm CreateNewTemplate(RasterImage templateImage, OmrEngine engine)
{
ITemplateForm template = engine.CreateTemplateForm();
template.Name = "Example Template";
// add each page in the source image to the template
// templates can be constructed from any number of rasterimages from different sources
for (int i = 0; i < templateImage.PageCount; i++)
{
templateImage.Page = i + 1;
template.Pages.AddPage(templateImage);
}
return template;
}
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