0

我正在使用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);
4

1 回答 1

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");
于 2013-09-25T07:05:42.920 回答