public void AddFormPage(
FormRecognitionAttributes attributes,
RasterImage page,
PageRecognitionOptions pageOptions
)
attributes
The Form attributes object.
page
The page image that is going to be added to the Form attributes object.
pageOptions
Specifies the options for the page.
The attributes should be a Form attributes, this method does not work for Master Forms attributes. To add a page to a Master Form attributes use AddMasterFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions).
This example adds a page to the form
using Leadtools;
using Leadtools.Barcode;
using Leadtools.Codecs;
using Leadtools.Document;
using Leadtools.Forms.Common;
using Leadtools.Ocr;
using Leadtools.Forms.Processing;
using Leadtools.Forms.Recognition;
using Leadtools.Forms.Recognition.Barcode;
using Leadtools.Forms.Recognition.Ocr;
/// This method adds a page to form attributes for recognition.
public void AddPageToForm(FormRecognitionEngine recognitionEngine, RasterImage image, FormRecognitionAttributes attributes)
{
recognitionEngine.OpenForm(attributes);
recognitionEngine.AddFormPage(attributes, image, null);
recognitionEngine.CloseForm(attributes);
}