我使用QRCODE.net库生成QR条码并且工作正常。我想要的是,当用户使用 Xamarin应用扫描代码时,网页将qr-code 重定向到另一个网址(如WhatsApp网站一样) )。你有任何想法吗?
我已经关注了这个例子:http://tech.trailmax.info/2012/09/generate-qr-barcode-in-asp-net-mvc/
我已经在Google搜索了很多内容,但仍未找到相关信息。
答案 0 :(得分:3)
您需要几个预先要求
然后解决方案流程
答案 1 :(得分:0)
答案 2 :(得分:-1)
我习惯使用qrcodenet
static string url =“http://www.google.com”;
static void GenerateQR() {
QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.M);
QrCode qrCode = qrEncoder.Encode(url);
for (int j = 0; j < qrCode.Matrix.Height; j++)
{
for (int i = 0; i < qrCode.Matrix.Width; i++)
{
char charToPoint = qrCode.Matrix[i, j] ? '█' : ' ';
Console.Write(charToPoint);
}
Console.WriteLine();
}
}