多平台代码对比示例——LEADTOOLS OCR iOS & OS X平台(三)

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

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

UIImage* uiImage = ... //
// Get a LEADTOOLS RasterImage from the platform image
LTRasterImage* rasterImage = [LTRasterImageConverter convertFromImage:uiImage
     options:LTConvertFromImageOptions_None
       error:nil];
// Create a LEADTOOLS OCR Document instance
[ocrEngine startup:nil workDirectory:nil startupParameters:[[NSBundle mainBundle] bundlePath];
LTOcrDocument* ocrDocument = [ocrEngine.documentManager createDocument];
// Add the page to the document and recognize it
LTOcrPage* ocrPage = [ocrDocument.pages addPageWithImage:rasterImage
   target:nil
   selector:nil
   error:nil];
// Recognize the image as text
NSString* text = [ocrPage recognizeText:nil selector:nil error:nil];
// Do something with 'text'

多平台代码对比示例——LEADTOOLS OCR iOS & OS X平台(三)_第1张图片

你可能感兴趣的:(多平台代码对比示例——LEADTOOLS OCR iOS & OS X平台(三))