我在Xamarin Forms中实现ZXing.Net.Mobile(Android)实现时遇到了一些麻烦。我的Android项目中有以下类,它实现了IBarcodeWriter接口(在我的共享项目中)。该应用程序不会丢失任何错误,但在使用DependencyService.Get<IBarcodeWriter> ().GetImage()
这是我的Droid项目中的课程:
namespace SmartCart {
public class BarcodeGenerator : IBarcodeWriter
{
public BarcodeGenerator () {}
public Image image = new Image();
public byte[] bitmapBytes;
public String qrData (String s) {
return s;
}
public void CreateBarcode () {
image.Source = ImageSource.FromStream(() =>
{
var writer = new BarcodeWriter
{
Format = BarcodeFormat.QR_CODE,
Options = new EncodingOptions
{
Height = 200,
Width = 600
}
};
var bitmapBytes = writer.Write ("Encode this to QRCode");
MemoryStream ms = new MemoryStream(bitmapBytes);
ms.Position = 0;
return ms;
});
}
public Image GetImage() {
return image;
}
}
答案 0 :(得分:1)
我们使用以下方法生成QR码。 (查看bitmap.Compress
行,也许可以解决您的问题):
public byte[] GenerateQrImage(string content, int width, int height)
{
var options = new QrCodeEncodingOptions
{
Height = height,
Width = width,
Margin = 0,
PureBarcode = true
};
var writer = new BarcodeWriter
{
Format = BarcodeFormat.QR_CODE,
Options = options
};
// Generate bitmap
var bitmap = writer.Write(content);
if (bitmap != null)
{
// Get bytes from bitmap
using (var stream = new MemoryStream())
{
bitmap.Compress(Bitmap.CompressFormat.Png, 100, stream);
return stream.ToArray();
}
}
return null;
}
编辑:事实证明,问题可能是错误的nuget包。使用this package生成qr-code