QR library for MonoTouch?

.net, c#, ios, qr-code, xamarin.ios

Solution

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

Problem

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?

Original source

Related problems