ImageGear .NET v25.1 - Updated
WriteDirectText(ImGearOCRPage,String) Method




ImageGear.OCR Assembly > ImageGear.OCR Namespace > ImGearOCR Class > WriteDirectText Method : WriteDirectText(ImGearOCRPage,String) Method
ImGearOCRPage object with valid recognition data to be saved.
A relative or absolute path for the file where the recognition data will be saved.
Writes the recognition data of the page to the file in the one of text formats.
Syntax
'Declaration
 
Public Overloads MustOverride Sub WriteDirectText( _
   ByVal page As ImGearOCRPage, _
   ByVal filePath As String _
) 
'Usage
 
Dim instance As ImGearOCR
Dim page As ImGearOCRPage
Dim filePath As String
 
instance.WriteDirectText(page, filePath)
public abstract void WriteDirectText( 
   ImGearOCRPage page,
   string filePath
)
public: abstract void WriteDirectText( 
   ImGearOCRPage* page,
   string* filePath
) 
public:
abstract void WriteDirectText( 
   ImGearOCRPage^ page,
   String^ filePath
) 

Parameters

page
ImGearOCRPage object with valid recognition data to be saved.
filePath
A relative or absolute path for the file where the recognition data will be saved.
Exceptions
ExceptionDescription
Argument page or filePath is null.
Argument filePath is empty string or this string refers incorrect file system resource.
Directory for file is not found.
Argument filePath is not correct.
Argument filePath contains too long path for file system.
Given page or parent of given page is disposed.
Remarks

Use ImGearOCRSettings.DirectTextFormat to get or set the current direct text output format.

For ImGearOCRDirectTextFormat.SimpleText, ImGearOCRDirectTextFormat.CommaSeparatedText and ImGearOCRDirectTextFormat.FormattedText text formats if file parameter specifies an existing file name, the text outputs are appended to the end of file. In case of ImGearOCRDirectTextFormat.XmlWithCoordinates text format if file parameter refers existing file the content of this file will be replaced with new text output.

See Also

Reference

ImGearOCR Class
ImGearOCR Members
Overload List
WriteDirectText(ImGearOCRPage,Stream) Method
WriteDirectText(ImGearOCRPage[],Stream) Method
WriteDirectText(ImGearOCRPage[],String) Method