Metadata-Version: 1.1
Name: asprise-ocr-sdk-python-api
Version: 15.3.0.1
Summary: Asprise OCR (optical character recognition) and barcode recognition SDK is a high performance royalty-free Python API library. It converts images (JPEG, PNG, TIFF, PDF, etc) into text, xml or searchable PDF. Data capture are supported for processing documents like invoices and forms.
Home-page: http://asprise.com/royalty-free-library/python-ocr-sdk-asprise_ocr_api-overview.html
Author: Asprise OCR
Author-email: support@asprise.com
License: ASPRISE OCR SDK LICENSE
Description: Asprise OCR SDK with Data Capture ◎ the Ultimate Royalty Free OCR Engine

        =========================================================================

        

        ► TO RUN THE SAMPLE OCR APPLICATION

        -----------------------------------

        ::

        

        static class Program { // Program.cs

            [STAThread]

            static void Main() {

                Application.EnableVisualStyles();

                Application.SetCompatibleTextRenderingDefault(false);

                Application.Run(new asprise_ocr_api.OcrSampleForm()); // ☜ Run OcrSampleForm

            }

        }

        

        ► PERFORM OCR IN JUST A FEW LINES

        ---------------------------------

        

        using asprise_ocr_api;

        

        AspriseOCR.SetUp();

        AspriseOCR ocr = new AspriseOCR();

        ocr.StartEngine("eng", AspriseOCR.SPEED_FASTEST);

        string file = "C:\\YOUR_FILE.jpg"; // ☜ jpg, gif, tif, pdf, etc.

        string s = ocr.Recognize(file, -1, -1, -1, -1, -1, AspriseOCR.RECOGNIZE_TYPE_ALL, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);

        Console.WriteLine("Result: " + s);

        ocr.StopEngine();

        

        ► OCR PROGRAMMING GUIDE

        -----------------------

        

        Developer's Guide: http://asprise.com/royalty-free-library/c%23-sharp.net-ocr-barcode-reader-sdk-samples-docs.html

        

        ► CONTACT ASPRISE

        -----------------

        

        Asprise OCR supports more than twenty languages, however only five popular languages are included

        in this trial kit. Please contact us if you need to evaluate other languages.

        

        Email: contact@asprise.com

        Web:   http://asprise.com/royalty-free-library/c%23-sharp.net-ocr-api-overview.html

        
Keywords: Asprise OCR SDK Image Convert Text Searchable PDF Barcode Recognition Invoice Form OMR
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: Other Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: Freely Distributable
Classifier: License :: Other/Proprietary License
Classifier: Natural Language :: English
Classifier: Natural Language :: French
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Java
Classifier: Programming Language :: Python
Classifier: Topic :: Office/Business
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Utilities
