2013-03-04 71 views
0

我正在使用zXing.net.monotouch.dll用於在單點觸摸中創建QRCode的庫。我通過使用下面的代碼得到了位圖。我不知道如何將其轉換爲圖像。在每個人都使用com.google.zxing.common.BitMatrix,但它在我的程序中不受支持。請找到我的解決方案:如何在單點觸摸中從位圖創建Qrcode圖像

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

使用類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");