我在NuGet包中使用“Qr代码库”来处理QR代码并简单地解码WinForm应用程序中的QRCode,如下所示:
var bm = new Bitmap(@"C:\Capture.bmp");
var qr = new QRCodeDecoder();
string text = qr.Decode(new QRCodeBitmapImage(bm));
MessageBox.Show(text);
QRCodeBitmapImage类获取一个Bitmap对象并将其转换为QRCodeImage进行解码,我的问题是在Windows Phone中我们有BitmapImage而不是Bitmap类!
库非常简单,但没有有用的文档...,他们只是说在NuGet库的描述中支持Windows Phone。
有什么想法解决这个问题?
答案 0 :(得分:1)
这是来自Nokia Developer Community
的好文章。本文将介绍how to use the Optical Reader Library
。它解释了如何将光学阅读器任务集成到Windows Phone 8应用程序中以便read QR and other barcodes
,以及如何扩展库以支持其他处理器进行图像增强和解码。