任何人都可以给我一些关于wp7的qrcode lib的想法吗?我在这里找到了一个lib:http://qrcodegenerator.codeplex.com/SourceControl/list/changesets 我可以在26个字符的字符串中生成qr代码...如果字符串超过26个字符,则会发生异常!
using Huyn.QRCode;
var generator = new QRCodeGenerator
{
QRCodeVersion = 9,
QRCodeErrorCorrect = QRCodeGenerator.ERRORCORRECTION.H
};
imgQRCode.Source = generator.Generate("Hello, World!");
我需要一个lib,它将从一个大字符串创建一个qr图像!请给出一些想法!
答案 0 :(得分:0)
您应该查看C#ZXing端口2.0。 我现在正在应用程序中使用它,它运行得很好。
请参阅此文章,了解我如何生成QR码:
Generating QR code on Windows Phone 7.1 using ZXing 2.0 C# Port
干杯。