我正在使用 zXing.net.monotouch.dll 库在monotouch中创建QRCode。我使用以下代码获得了bitmatrix。我不知道如何将其转换为图像。在网上使用 com.google.zxing.common.BitMatrix 的所有人,但我的程序不支持它。请找我解决方案:
ZXing.QrCode.QRCodeWriter ObjQrCodeWriter= new ZXing.QrCode.QRCodeWriter();
ZXing.Common.BitMatrix bitMatrix1=ObjQrCodeWriter.encode("this is a string content",ZXing.BarcodeFormat.QR_CODE,60,60);
答案 0 :(得分:0)
使用ZXing.BarcodeWriter类。
var writer = new ZXing.BarcodeWriter
{
Format = BarcodeFormat.QR_CODE,
Options = new EncodingOptions { Height = 60, Width = 60 }
};
var image = writer.Write("this is a string content");