gpt4 book ai didi

blackberry - 使用新的createbitmap方法时如何设置二维码纠错级别

转载 作者:行者123 更新时间:2023-12-04 02:16:02 26 4
gpt4 key购买 nike

此问题引用 API 文档链接,http://www.blackberry.com/developers/docs/7.0.0api/net/rim/device/api/barcodelib/BarcodeBitmap.html

他们指定旧方法

public static Bitmap createBitmap(ByteMatrix byteMatrix,
int maxBitmapSizeInPixels)

已弃用。

但是通过使用新的方法,

public static Bitmap createBitmap(ByteMatrix byteMatrix)

他们没有指定一种方法来指定 Multiformatwriter 中 QR 码的纠错级别。我也没能找到办法,查看各种成员函数。有人试过吗?

感谢您的帮助。

最佳答案

这是我的代码,我已经用我的手机检查过,根据我的手机正确设置了纠错级别。

        Hashtable hints = new Hashtable();
switch (comboBox1.Text)
{
case "L":
hints.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
break;
case "Q":
hints.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.Q);
break;
case "H":
hints.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
break;
default:
hints.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
break;
}
MultiFormatWriter mw = new MultiFormatWriter();
ByteMatrix bm = mw.encode(data, BarcodeFormat.QR_CODE, size, size, hints);
Bitmap img = bm.ToBitmap();
pictureBox1.Image = img;

关于blackberry - 使用新的createbitmap方法时如何设置二维码纠错级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11545431/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com