I am writing an application in Xamarin to create a QR code for a given input.
using ZXing.Net.Mobile.Forms;
var writer = new BarcodeWriter
{
Format = BarcodeFormat.QR_CODE,
Options = new EncodingOptions
{
Height = 200,
Width = 600
}
};
var bitmap = writer.Write("Hello Stack Overflow");
How do I now display this barcode on my form?