多平台代码对比示例——LEADTOOLS OCR Android平台(四)

LEADTOOLS最近发布了v18版本,这个版本也被称为 LEADTOOLS Anywhere™,他将世界最领先的成像技术扩展到 iOSAndroid和Linux OS X等平台。不仅仅是Windows平台,他让所有流行的平台都能够实现查看者,注释和标记,OCR,条码,PDF,图像格式,压缩,图像处理等更多图像 OCR功能。

  每个使用LEADTOOLS的开发者能够在每个开发平台上使用一组非常相似的库进行程序开发。这是其的一个明显优势,让开发者即能够开发原生的应用程序,又不用花费太多的时间进行完全的代码重写。

android.graphics.Bitmap bitmap = ... //
// Get a LEADTOOLS RasterImage from the platform image
RasterImage rasterImage = RasterImageConverter.convertFromBitmap(bitmap, ConvertFromImageOptions.NONE);
// Create a LEADTOOLS OCR Document instance
OcrEngine ocrEngine = OcrEngineManager.createEngine(OcrEngineType.Advantage);
ocrEngine.startup(null, "", null, this.getApplicationInfo().dataDir);
OcrDocument document = ocrEngine.getDocumentManager().createDocument();
// Add the page to the document and recognize it
OcrPage ocrPage = document.getPages().addPage(image, null);
// Recognize the image as text
String text = ocrPage.recognizeText(this);
// Do something with 'text'


你可能感兴趣的:(多平台代码对比示例——LEADTOOLS OCR Android平台(四))