我有一個應用程序需要掃描QRCodes。我的應用程序使用C#。 .Net無法解析QR碼。有沒有自由選擇解析QRCodes如何讀取UWP中的QRCode Windows 10應用程序
0
A
回答
1
.NET沒有類來完成這個你。上述選項是您的應用程序中包含的良好類。 另一種選擇是不使用類,而是使用網絡上的API,如http://goqr.me/api/doc/read-qr-code/。您可以將圖片的網址作爲參數發送,然後獲取信息。這在基於JavaScript的解決方案中非常有用,因爲您不能使用.NET類。
請記住在幫助你的帖子上單擊「標記爲答案」,如果標記的帖子實際上沒有回答你的問題,點擊「取消標記爲答案」。即使您不是線索的作者,您也可以通過投票來幫助其他人。這可以有益於其他社區成員閱讀該主題。
0
你可以試試下面的選項:
條形碼掃描儀樣品在GitHub上:
https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/BarcodeScanner
您還可以使用ZXing.Net - 你可以從它的NuGet:
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;
}
}
相關問題
- 1. Windows 10 UWP應用程序c#打印
- 2. 如何在Windows 10應用程序(UWP)中使用OCR?
- 3. 如何在Windows 10 UWP應用程序中播放(MIDI)聲音?
- 4. 適用於Windows 8和Windows 10的Windows UWP應用程序
- 5. Windows 10 UWP應用程序作爲桌面應用程序
- 6. 如何強制關注Windows 10應用程序(UWP)的XAML ListView?
- 7. 如何將.msi文件轉換爲Windows 10 UWP應用程序
- 8. UWP中的圖表Windows 10應用程序
- 9. 在Android中轉換現有的Windows 10 UWP應用程序
- 10. Windows 10 UWP應用程序中的ItemsControl和ItemTemplateSelector
- 11. Windows 10中自簽名的UWP應用程序S
- 12. Windows 10中的應用程序內購買問題UWP
- 13. Windows 10 UWP應用程序如何從設備獲取歌曲列表?
- 14. Windows 10應用程序服務
- 15. Windows 10 UWP應用程序中沒有System.Serializable屬性?
- 16. 如何響應UWP應用程序中的藍牙LE特徵讀取請求
- 17. Windows應用商店中的非UWP應用程序如何?
- 18. UWP Windows-10無法添加Microsoft.NETCore.UniversalWindowsPlatform到我的C#應用程序
- 19. ContentPresenter在Windows 10的uwp應用程序不擴展到全寬
- 20. Windows 10現代應用程序或UWP應用程序數據文件夾
- 21. 如何以編程方式退出或關閉UWP應用程序? (Windows 10)
- 22. 如何使用onedrive SDK的Windows 10 UWP
- 23. UWP-從應用程序的代碼中讀取.csproj的應用程序代碼
- 24. 在Windows 10自動相機上傳UWP應用程序
- 25. Windows 10更新VS UWP應用程序構建
- 26. Onclick html屬性不工作在Windows 10 UWP應用程序
- 27. UWP Windows 10:是否有變量計數應用程序啓動?
- 28. Windows 10 UWP應用程序菜單彈出菜單項內
- 29. KeyDown延遲C++ UWP Windows 10 Direct3D 12應用程序
- 30. Windows 10 UWP - 向後兼容應用程序