Leadtools.Services.Forms.DataContracts Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
DocumentConvertOptions Structure
See Also  Members   Example
Leadtools.Services.Forms.DataContracts Namespace : DocumentConvertOptions Structure



The DocumentConvertOptions structure provides options for the Leadtools.Services.Forms.ServiceContracts.IOcrService.Recognize operation.

Syntax

Visual Basic (Declaration) 
<DataContractAttribute(Namespace="http://Leadtools.Services.Forms.DataContracts/2009/01", Name="DocumentConvertOptions")>
Public Structure DocumentConvertOptions 
   Inherits ValueType
Visual Basic (Usage)Copy Code
Dim instance As DocumentConvertOptions
C# 
[DataContractAttribute(Namespace="http://Leadtools.Services.Forms.DataContracts/2009/01", Name="DocumentConvertOptions")]
public struct DocumentConvertOptions : ValueType 
C++/CLI 
[DataContractAttribute(Namespace="http://Leadtools.Services.Forms.DataContracts/2009/01", Name="DocumentConvertOptions")]
public value class DocumentConvertOptions : public ValueType 

Example

This example will convert a TIF file to the text file format.

Visual BasicCopy Code
Public Sub DocumentConvertOptionsExample()
  Dim client As OcrServiceClient = New OcrServiceClient()
  Dim sourceBinaryData As RawBinaryData = New RawBinaryData()
  sourceBinaryData.Data = File.ReadAllBytes(LeadtoolsExamples.Common.ImagesPath.Path & "clean.tif")

  ' set the document convertion options
  Dim convertOptions As DocumentConvertOptions = New DocumentConvertOptions()

  convertOptions.Source = sourceBinaryData
  convertOptions.Destination = Nothing
  convertOptions.Format = OcrDocumentFormatType.TextAnsi
  convertOptions.FirstPageNumber = 1
  convertOptions.LastPageNumber = 1
  Dim files As DocumentFiles

  Dim request As RecognizeRequest = New RecognizeRequest()
  request.ConvertOptions = convertOptions

  Dim response As RecognizeResponse = client.Recognize(request)

  If Not response.Destination Is Nothing Then
    If TypeOf response.Destination Is RawBinaryData Then
       File.WriteAllBytes(LeadtoolsExamples.Common.ImagesPath.Path & "clean.txt", (TryCast(response.Destination, RawBinaryData)).Data)
    End If
  End If

  client.Close()
End Sub
C#Copy Code
public void DocumentConvertOptionsExample() 

   OcrServiceClient client = new OcrServiceClient(); 
   RawBinaryData sourceBinaryData = new RawBinaryData(); 
   sourceBinaryData.Data = File.ReadAllBytes(LeadtoolsExamples.Common.ImagesPath.Path + "clean.tif"); 
 
   // set the document convertion options 
   DocumentConvertOptions convertOptions = new DocumentConvertOptions(); 
 
   convertOptions.Source = sourceBinaryData; 
   convertOptions.Destination = null; 
   convertOptions.Format  = OcrDocumentFormatType.TextAnsi; 
   convertOptions.FirstPageNumber = 1; 
   convertOptions.LastPageNumber = 1; 
   DocumentFiles files; 
 
   RecognizeRequest request = new RecognizeRequest(); 
   request.ConvertOptions = convertOptions; 
 
   RecognizeResponse response = client.Recognize(request); 
 
   if (response.Destination != null) 
   { 
      if (response.Destination is RawBinaryData) 
         File.WriteAllBytes(LeadtoolsExamples.Common.ImagesPath.Path + "clean.txt", (response.Destination as RawBinaryData).Data); 
   } 
 
   client.Close(); 
}

Inheritance Hierarchy

System.Object
   System.ValueType
      Leadtools.Services.Forms.DataContracts.DocumentConvertOptions

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

Applications developed with LEADTOOLS WCF components require runtime licenses. Server licensing is required for applications on a server. For more information, refer to: Imaging Pro/Document/Medical Features