我正在使用zXing.net.monotouch.dll库在 monotouch 中创建 QRCode。我通过使用以下代码获得了位矩阵。我不知道如何将其转换为图像。在网络中,每个人都使用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);