Using gdpictureOCR As GdPictureOCR = New GdPictureOCR()
'Set up your prefered parameters for OCR.
'Run the OCR process.
Dim result As String = gdpictureOCR.RunOCR()
'Check the status.
Dim status As GdPictureStatus = gdpictureOCR.GetStat()
If status = GdPictureStatus.OK Then
'The method has been followed without errors.
'Continue ...
Else
'Some error occurred.
MessageBox.Show("The OCR process has failed with the status: " + status.ToString(), "Example: GetStat")
End If
End Using
using (GdPictureOCR gdpictureOCR = new GdPictureOCR())
{
//Set up your prefered parameters for OCR.
//Run the OCR process.
string result = gdpictureOCR.RunOCR();
//Check the status.
GdPictureStatus status = gdpictureOCR.GetStat();
if (status == GdPictureStatus.OK)
{
//The method has been followed without errors.
//Continue ...
}
else
{
//Some error occurred.
MessageBox.Show("The OCR process has failed with the status: " + status.ToString(), "Example: GetStat");
}
}