解码QRCode Windows Phone 8使用QR码库

本文关键字:使用 QR 码库 Phone QRCode Windows 解码 | 更新日期: 2023-09-27 18:15:27

我在NuGet包中使用"Qr码库"来处理Qr码,并简单地解码WinForm应用程序中的Qr码,如下所示:

    var bm = new Bitmap(@"C:'Capture.bmp");
    var qr = new QRCodeDecoder();
    string text = qr.Decode(new QRCodeBitmapImage(bm));
    MessageBox.Show(text);

QRCodeBitmapImage类获得位图对象并将其转换为QRCodeImage来解码它,我的问题是在Windows Phone中我们有BitmapImage而不是Bitmap类!

库非常简单,但没有有用的文档…他们只是在NuGet库的描述中说支持Windows Phone。

有解决这个问题的办法吗?

解码QRCode Windows Phone 8使用QR码库

这是Nokia Developer Community的一篇好文章。本文展示了how to use the Optical Reader Library。它解释了如何将光学阅读器任务集成到Windows Phone 8应用程序中以read QR and other barcodes,以及如何扩展库以支持其他处理器进行图像增强和解码。

你可以试试这个:Windows Phone 8的光学阅读器库