Class LeptonicaException
Inheritance
System.Object
LeptonicaException
Assembly: IronOcr.dll
Syntax
public class LeptonicaException : Exception
LeptonicaException signals a failure inside the Leptonica image-processing layer that IronOCR's Tesseract engine relies on, typically while decoding, converting, or transforming an input image before recognition. Read its message and inner exception to see which operation failed, then confirm the source image is a supported format and is not corrupt or empty before retrying. It derives directly from Exception.
Constructors
LeptonicaException()
Declaration
public LeptonicaException()
LeptonicaException(SerializationInfo, StreamingContext)
Declaration
protected LeptonicaException(SerializationInfo info, StreamingContext context)
Parameters
| Type |
Name |
Description |
| System.Runtime.Serialization.SerializationInfo |
info |
|
| System.Runtime.Serialization.StreamingContext |
context |
|
LeptonicaException(String)
Declaration
public LeptonicaException(string message)
Parameters
| Type |
Name |
Description |
| System.String |
message |
|
LeptonicaException(String, Exception)
Declaration
public LeptonicaException(string message, Exception inner)
Parameters
| Type |
Name |
Description |
| System.String |
message |
|
| System.Exception |
inner |
|