我用qrcode生成二维码,字节20个,但是打印出来的二维码只有9mm长宽,那么参数该如何设置? 20

如上,用的java,或者生成二维码用zxing会不会更好些?... 如上,用的java,或者生成二维码用zxing会不会更好些? 展开
 我来答
summer_耶
2020-10-15 · TA获得超过819个赞
知道大有可为答主
回答量:2116
采纳率:90%
帮助的人:92.6万
展开全部

生成二维码,你可以用二维码生成软件,二维码生成软件支持多种二维码类型,生成之后,双击二维码,可以在图形属性中,自定义设置各项参数。如图所示:

小青年宝哥
2020-11-02 · 超过62用户采纳过TA的回答
知道小有建树答主
回答量:263
采纳率:53%
帮助的人:61.2万
展开全部
zxing 生成二维码

/*生成二维码*/
public static Bitmap createQRCode(String content, int w, int h, Bitmap logo) {

if (TextUtils.isEmpty(content)) {
return null;
}
/*偏移量*/
int offsetX = w / 2;
int offsetY = h / 2;

/*生成logo*/
Bitmap logoBitmap = null;

if (logo != null) {
Matrix matrix = new Matrix();
float scaleFactor = Math.min(w * 1.0f / 5 / logo.getWidth(), h * 1.0f / 5 / logo.getHeight());
matrix.postScale(scaleFactor, scaleFactor);
logoBitmap = Bitmap.createBitmap(logo, 0, 0, logo.getWidth(), logo.getHeight(), matrix, true);
}

/*如果log不为null,重新计算偏移量*/
int logoW = 0;
int logoH = 0;
if (logoBitmap != null) {
logoW = logoBitmap.getWidth();
logoH = logoBitmap.getHeight();
offsetX = (w - logoW) / 2;
offsetY = (h - logoH) / 2;
}

/*指定为UTF-8*/
Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
//容错级别
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
//设置空白边距的宽度
hints.put(EncodeHintType.MARGIN, 0);
// 生成二维矩阵,编码时指定大小,不要生成了图片以后再进行缩放,这样会模糊导致识别失败
BitMatrix matrix = null;
try {
matrix = new MultiFormatWriter().encode(content,
BarcodeFormat.QR_CODE, w, h, hints);

// 二维矩阵转为一维像素数组,也就是一直横着排了
int[] pixels = new int[w * h];
for (int y = 0; y < h; y++) {
for (int x = 0; x < w; x++) {
if (x >= offsetX && x < offsetX + logoW && y >= offsetY && y < offsetY + logoH) {
int pixel = logoBitmap.getPixel(x - offsetX, y - offsetY);
if (pixel == 0) {
if (matrix.get(x, y)) {
pixel = 0xff000000;
} else {
pixel = 0xffffffff;
}
}
pixels[y * w + x] = pixel;
} else {
if (matrix.get(x, y)) {
pixels[y * w + x] = 0xff000000;
} else {
pixels[y * w + x] = 0xffffffff;
}
}
}
}

Bitmap bitmap = Bitmap.createBitmap(w, h,
Bitmap.Config.ARGB_8888);
bitmap.setPixels(pixels, 0, w, 0, 0, w, h);
return bitmap;

} catch (WriterException e) {

System.out.print(e);
return null;
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Satan乄寷
2020-10-14 · TA获得超过155个赞
知道答主
回答量:98
采纳率:50%
帮助的人:21.5万
展开全部
二维码的大小需要在生成的时候设置,具体百度一下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式