Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QR library for MonoTouch?

I am trying to read and also generate QR codes (locally within application) in a MonoTouch project.

Is there any OpenSource or commercial library to read and generate QR codes for C#/MonoTouch?

like image 787
Shahed Avatar asked Oct 08 '22 00:10

Shahed


1 Answers

for reading QR Codes there are a couple of options

ZXING.Net.Mobile A MT port of zxing library

RedLaser MonoTouch Binding Is the MT binding for RedLaser SDK which is a Paid SDK

And here is a sample app using zxing.MonoTouch and MT.D

All of these are used to read a QR Code, i don't know any to generate QR Codes in MT, but here is a StackOverflow question that points to a couple Objc libraries which you could bind with MT

like image 154
dalexsoto Avatar answered Oct 13 '22 11:10

dalexsoto