DataMatrix条码格式在ZXingBarcodeImageView Xamarin Forms Zxing 2.3.2中模糊
Posted
技术标签:
【中文标题】DataMatrix条码格式在ZXingBarcodeImageView Xamarin Forms Zxing 2.3.2中模糊【英文标题】:DataMatrix Barcode Format Blurred in ZXingBarcodeImageView Xamarin Forms Zxing 2.3.2 【发布时间】:2018-07-08 09:58:57 【问题描述】:我正在尝试在 ZXingBarcodeImageView 中显示 DataMatrix 条码,问题是我使用的条码的宽度和高度都模糊且分辨率低。
Screenshot
<StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" >
<forms1:ZXingBarcodeImageView BarcodeFormat="DATA_MATRIX" BarcodeOptions="datamatrix:DatamatrixEncodingOptions, Height=100, Width=100" WidthRequest="100" HeightRequest="100" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" BarcodeValue="123456" ></forms1:ZXingBarcodeImageView>
我尝试在 EncodingOptions 和 ZXingBarcodeImageView 本身上设置不同的高度和宽度。
有什么推荐吗?
【问题讨论】:
请贴出相关代码 @Jason 我编辑了帖子以添加更多信息 如果删除 FillAndExpand 属性会发生什么?看来您的 100 像素图像(非常小)正在按比例放大以适合其容器 我已经尝试过了,从 StackLayout 和 ZXingBarcodeImageView 中删除了所有 FillAndExpand 属性。条码仍然模糊 【参考方案1】:我也有类似的问题。
原来你可以像这样设置 EncodingOptions,例如:
barcodeImageView.BarcodeOptions = new ZXing.Common.EncodingOptions() Height = 300, Width = 300, PureBarcode = true ;
因为生成发生在较低级别,并且会扩大。
这个答案帮助了我: how to fix an unclear qr code image generated using zxing 2.1?
【讨论】:
请在下面查看我的答案,EncodingOptions 不起作用我已经尝试过了【参考方案2】:ZXing 中的此错误仅适用于 DataMatrix,因此 我最终只为 android 和 ios 创建了自定义渲染器(Windows 工作正常)。
安卓代码:
public class SDataMatrixRenderer : ImageRenderer
public SDataMatrixRenderer(Context context) : base(context)
protected override void OnElementChanged(ElementChangedEventArgs<Image> e)
base.OnElementChanged(e);
if (Element == null)
return;
Control.SetImageBitmap(GetBitmap(((SDataMatrix)Element).BitMatrix));
private Bitmap GetBitmap(BitMatrix bitMatrix)
int BLACK = Color.Black;
int WHITE = Color.White;
// change the values to your needs
int requestedWidth = 200;
int requestedHeight = 200;
int width = bitMatrix.Width;
int height = bitMatrix.Height;
// calculating the scaling factor
int pixelsize = requestedWidth / width;
if (pixelsize > requestedHeight / height)
pixelsize = requestedHeight / height;
int[] pixels = new int[requestedWidth * requestedHeight];
// All are 0, or black, by default
for (int y = 0; y < height; y++)
int offset = y * requestedWidth * pixelsize;
// scaling pixel height
for (int pixelsizeHeight = 0; pixelsizeHeight < pixelsize; pixelsizeHeight++, offset += requestedWidth)
for (int x = 0; x < width; x++)
int color = bitMatrix[x, y] ? BLACK : WHITE;
// scaling pixel width
for (int pixelsizeWidth = 0; pixelsizeWidth < pixelsize; pixelsizeWidth++)
pixels[offset + x * pixelsize + pixelsizeWidth] = color;
Bitmap bitmap = Bitmap.CreateBitmap(requestedWidth, requestedHeight, Bitmap.Config.Argb8888);
bitmap.SetPixels(pixels, 0, requestedWidth, 0, 0, requestedWidth, requestedHeight);
return bitmap;
在 iOS 上:
public class SDataMatrixRenderer : ImageRenderer
protected override void OnElementChanged(ElementChangedEventArgs<Image> e)
base.OnElementChanged(e);
if (Element == null)
return;
Control.Image = GetImage(((SDataMatrix)Element).BitMatrix);
public UIImage GetImage(BitMatrix matrix)
UIGraphics.BeginImageContext(new CGSize(matrix.Width * 10, matrix.Height * 10));
CGContext context = UIGraphics.GetCurrentContext();
CGColor black = new CGColor(0f, 0f, 0f);
CGColor white = new CGColor(1.0f, 1.0f, 1.0f);
for (int x = 0; x < matrix.Width; x++)
for (int y = 0; y < matrix.Height; y++)
context.SetFillColor(matrix[x, y] ? black : white);
context.FillRect(new CGRect(x*10, y*10, 10, 10));
UIImage img = UIGraphics.GetImageFromCurrentImageContext();
UIGraphics.EndImageContext();
return img;
【讨论】:
以上是关于DataMatrix条码格式在ZXingBarcodeImageView Xamarin Forms Zxing 2.3.2中模糊的主要内容,如果未能解决你的问题,请参考以下文章