Asprise / java-.net-ocr-api-library

Asprise OCR SDK for Java/.NET - royalty free, convert image to searchable PDF — Edit

Home Page:http://asprise.com/royalty-free-library/ocr-api-for-java-csharp-vb.net.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Asprise Java/C#,VB.NET OCR and Barcode Recognition SDK

Asprise Java/C#,VB.NET OCR (optical character recognition) and barcode recognition SDK offers a high performance API library for you to equip your Java applications (Java applets, web applications, Swing/JavaFX components, JEE enterprise applications) as well as C#, VB.NET applications (Windows applications, Sliverlight, ASP.NET web service applications, ActiveX controls, etc.) with functionality of extracting text and barcode information from scanned document images.

You can convert images (in various formats like JPEG, PNG, TIFF, PDF, etc.) into editable document formats (Word, XML, searchable PDF, etc.). With other offering like Asprise Image Scanning SDK (which captures documents from scanners), you can easily implement full document management solutions.

Source code of the sample applications has been published.

Please browse SOURCE CODE.

Note: you need download the dependency dlls from Asprise.com: Java OCR API Free Download | C#,VB.NET Library Free Download

Sample Input/Output

####Input Sample Input Image

####Output (Searchable PDF) The OCR engine supports the follow output formats: plain text, xml with coordinates and searchable PDF. Here is the searchable PDF output

Quick Start

Programming with Asprise OCR is very straightforward. Below is the typical source code sample to recognize images.

###Java OCR

import com.asprise.ocr.Ocr
...

Ocr.setUp(); // one time setup
Ocr ocr = new Ocr(); // create a new OCR engine
ocr.startEngine("eng", Ocr.SPEED_FASTEST); // English
String s = ocr.recognize(new File[] {new File("test.png")},
  Ocr.RECOGNIZE_TYPE_ALL, Ocr.OUTPUT_FORMAT_PLAINTEXT);
System.out.println("Result: " + s);
ocr.stopEngine();

For details, please refer to Java OCR API Developer's Guide

###C#/VB.NET OCR

import com.asprise.ocr.Ocr
...

Ocr.setUp(); // one time setup
Ocr ocr = new Ocr(); // create a new OCR engine
ocr.startEngine("eng", Ocr.SPEED_FASTEST); // English
String s = ocr.recognize(new File[] {new File("test.png")},
  Ocr.RECOGNIZE_TYPE_ALL, Ocr.OUTPUT_FORMAT_PLAINTEXT);
System.out.println("Result: " + s);
ocr.stopEngine();

For details, please refer to C#/VB.NET OCR Library Developer's Guide

For other languages, e.g., C/C++/Delphi OCR and Barcode Recognition on Windows/Linux/Mac OS X, please click here

##Features of Asprise OCR

###Accurate Text Recognition With enhanced image processing and text detection algorithms, Asprise OCR can easily recognize difficult documents of poor image quality. Parameters can be used to hint favoring accuracy over speed.

####High Speed OCR Engine Asprise OCR uses optimized OCR engine to perform excellent recognition in short time. Speed can be further improved through multi-threading and optional GPU acceleration.

####20+ Languages Supported Recognizes 20+ languages such as English, Spanish, French, German, Italian, Hungarian, Finnish, Swedish, Romanian, Polish, Malay, Arabic, Indonesian, and Russian.

####All Popular Barcode Formats All popular barcode formats are supported: EAN-8, EAN-13, UPC-A, UPC-E, ISBN-10, ISBN-13, Interleaved 2 of 5, Code 39, Code 128, PDF417, and QR Code.

####Images To Searchable PDF With a few lines of code, you can convert various formats of images such as JPEG, PNG, TIFF, and PDF into searchable PDF files.

####Easy Deployment No software protection dongle, no licensing server required. Deployment of Asprise OCR SDK is as easy as you develop with it.

####Budget Friendly, Royalty-Free Royalty-free means you pay when you order a development license, but you don't have to pay again when you deploy your software to thousands of servers or to thousands of end users.

About

Asprise OCR SDK for Java/.NET - royalty free, convert image to searchable PDF — Edit

http://asprise.com/royalty-free-library/ocr-api-for-java-csharp-vb.net.html


Languages

Language:C# 42.4%Language:Visual Basic 41.2%Language:CSS 13.5%Language:Java 2.7%Language:Shell 0.3%