ImageGear .NET v25.2 - Updated
ImageGear.OCR Assembly / ImageGear.OCR Namespace / ImGearOCR Class / Create Method / Create() Method




In This Topic
    Create() Method
    In This Topic
    Creates a new instance of the ImGearOCR class.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Create() As ImGearOCR
    'Usage
     
    Dim value As ImGearOCR
     
    value = ImGearOCR.Create()
    public static ImGearOCR Create()
    public: static ImGearOCR* Create(); 
    public:
    static ImGearOCR^ Create(); 

    Return Value

    OCR engine for text recognition.
    Exceptions
    ExceptionDescription
    Initialization failed. Additional information is in the Data member of the exception.
    Remarks
    Creates a new object that represents the OCR engine. For best performance, only a single instance should be created per thread. The default resource path will be used. If you are using OCR features in a web project, you cannot use this constructor as it is not suited to web applications. Instead, you need to specify the location of the dependencies. See Create(String)
    See Also