Re: [mono-android] Get Bitmap from QRCodeWriter using Zxing Library

2012-07-26 Thread DFX
I figured it out... Here is the updated code: var height = 100; var width = 100; var writer = new QRCodeWriter(); var matrix = writer.encode("http//www.google.com", com.google.zxing.BarcodeFormat.QR_CO

[mono-android] Get Bitmap from QRCodeWriter using Zxing Library

2012-07-26 Thread DFX
I'm using the MonoDroid port of Zxing, found here: https://github.com/JohnACarruthers/zxing.MonoDroid I'm trying to create a QR Code and display it in an ImageView, but I apparently I have no idea what I'm doing ;-) QRCodeWriter has an encode method that returns a ByteMatrix. I'm trying to use Bi