|
|
|
 |
FAQs: Asprise OCR v4.0 for C# [C Sharp] .NET
- What's new in Asprise OCR v4.0?

Asprise OCR v4.0 provides full support for Windows Vista, and most of 64bit operating systems.
Additionally, Asprise OCR v4.0 features optimized OCR engine with higher accuracy and faster speed.
- Is there any difference between the trial version and full version?

There is no functional
difference. However, according to the evaluation license agreement, developers
are not allowed to distribute software using a trial version of Asprise OCR
library.
- What kinds of operating systems does Asprise OCR library support?

Asprise OCR supports
most of popular platforms. We have pre-compiled Asprise OCR library on Win32
platforms and various Unix platforms.
- What kinds of image formats does Asprise OCR library support?

Asprise OCR supports
a wide range of image formats. Details are shown in the table below:
| .bmp (Windows bitmap) |
.cut (Dr. Halo Cut File) |
.ico (Icon) |
| .jpg, .jpeg (JPEG) |
.lbm (Interlaced bitmap) |
.pcd (PhotoCD) |
| .pcx |
.pic |
.png (Portable Network Graphics) |
| .pnm, .pbm |
.sgi (Silicon Graphics) |
.tga (Targa) |
| .tif, .tiff |
.chead |
.raw |
| .wal (Quake 2) |
.mng |
.jng |
| .gif |
.dds |
.dcx |
| .psd (Photoshop) |
.exif |
.psp |
| .pix |
.pxr |
.xpm |
In practice, you do not need to specified the format of the input image thanks
to Asprise OCR's image format autodection feature.
- How to set up development environment?

Please refer to
the developer guide.
- Is it difficult to perform OCR with Asprise OCR?

Not at all. Belows
shows a complete demo program that performs OCR on the file C:/ocr.jpg and
returns the results:
[DllImport("AspriseOCR.dll")]
static extern string OCR(string file, int type);
[DllImport("AspriseOCR.dll")]
static extern string OCRpart
(string file, int type, int startX, int startY, int width, int height);
[DllImport("AspriseOCR.dll")]
static extern string OCRBarCodes(string file, int type);
[DllImport("AspriseOCR.dll")]
static extern string OCRpartBarCodes
(string file, int type, int startX, int startY, int width, int height);
...
// Then you can start to call these function. eg.
string result = OCR("C:\\ocr.jpg", -1);
The above code demostrates the basic usage of Asprise OCR. For advanced
techniques, please refer to the developer's
guide.
|
 |
|