2016-06-21 109 views

回答

1

.NET沒有類來完成這個你。上述選項是您的應用程序中包含的良好類。 另一種選擇是不使用類,而是使用網絡上的API,如http://goqr.me/api/doc/read-qr-code/。您可以將圖片的網址作爲參數發送,然後獲取信息。這在基於JavaScript的解決方案中非常有用,因爲您不能使用.NET類。

請記住在幫助你的帖子上單擊「標記爲答案」,如果標記的帖子實際上沒有回答你的問題,點擊「取消標記爲答案」。即使您不是線索的作者,您也可以通過投票來幫助其他人。這可以有益於其他社區成員閱讀該主題。

0

您可以使用免費的Zxing.Net.Mobile包。有樣品你可以看看。

例如在這裏,你可以從一個WriteableBitma這樣解析QRCodes:

private async void qrcode(WriteableBitmap bmp) 
{ 
    IBarcodeReader reader = new BarcodeReader(); 
    // detect and decode the QRcode inside the writeablebitmap 
    var result = reader.Decode(bmp); 
    // do something with the result 
    if (result != null) 
    { 
     //show QRCode's content 
     txtDecoderType.Text = result.BarcodeFormat.ToString(); 
     txtDecoderContent.Text = result.Text; 
    } 
} 
相關問題