←Select platform

AddMasterFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions) Method

Summary
Appends a new page to the specified Master Form attributes object. The Master Form attributes object should be opened before the addition using OpenMasterForm.

Syntax
C#
C++/CLI
Java
Python
public: 
void AddMasterFormPage(  
   FormRecognitionAttributes^ attributes, 
   RasterImage^ page, 
   PageRecognitionOptions^ pageOptions 
)  
def AddMasterFormPage(self,attributes,page,pageOptions): 

Parameters

attributes
The Master Form attributes object.

page
The page image that is going to be added to Master Form attributes object.

pageOptions
Specifies the page options.

Remarks

The attributes should be a Master Form attributes, this method does not work for Forms attributes. To add a page to a Form attributes use AddFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions).

Example

This example adds a page to the master form

C#
Java
using Leadtools; 
using Leadtools.Barcode; 
using Leadtools.Codecs; 
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 a Master Form recognition attributes. 
public void AddPageToMasterForm(FormRecognitionEngine recognitionEngine, RasterImage image, FormRecognitionAttributes attributes) 
{ 
   recognitionEngine.OpenMasterForm(attributes); 
   recognitionEngine.AddMasterFormPage(attributes, image, null); 
   recognitionEngine.CloseMasterForm(attributes); 
} 
 
import static org.junit.Assert.assertTrue; 
 
import java.io.File; 
import java.io.IOException; 
import java.util.UUID; 
 
import org.junit.*; 
import org.junit.Test; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.forms.recognition.FormRecognitionAttributes; 
import leadtools.forms.recognition.FormRecognitionEngine; 
 
 
public void AddPageToMasterFormExample() { 
   FormRecognitionEngine recognitionEngine = new FormRecognitionEngine(); 
   RasterImage image = new RasterCodecs().load("C:\\LEADTOOLS23\\Resources\\Images\\ocr1.tif"); 
   FormRecognitionAttributes attributes = recognitionEngine.createMasterForm("MasterExample", UUID.randomUUID(), 
         null); 
 
   recognitionEngine.addMasterFormPage(attributes, image, null); 
   assertTrue(attributes.getFRForm().getPages().size() > 0); 
   System.out.println( 
         attributes.getFRForm().getName() + " contains " + attributes.getFRForm().getPages().size() + " page(s)."); 
   recognitionEngine.closeMasterForm(attributes); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Forms.Recognition Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.