多平台代码对比示例——LEADTOOLS OCR WinRT平台(二)

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

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


Windows.UI.Xaml.Media.ImageSource imageSource = ... //
// Get a LEADTOOLS RasterImage from the platform image
RasterImage rasterImage = RasterImageConverter.ConvertFromImageSource(imageSource, ConvertFromImageOptions.None);
// Create a LEADTOOLS OCR Document instance
IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, false);
ocrEngine.Startup(null, null, string.Empty, Package.Current.InstalledLocation.Path);
IOcrDocument ocrDocument = ocrEngine.DocumentManager.CreateDocument();
// Add the page to the document and recognize it
IOcrPage ocrPage = ocrDocument.Pages.AddPage(rasterImage, null);
// Recognize the image as text
string text = ocrPage.RecognizeText(null);
// Do something with 'text'

多平台代码对比示例——LEADTOOLS OCR WinRT平台(二)_第1张图片

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