碰到了一个问题,需求是要将每一个老人的二维码展示在前台,可以让不同的子女去扫描老人的二维码,以达到快速绑定老人信息,我们平常扫描二维码的时候,是将二维码的信息解析为字符串等,现在刚好是反着来的。具体怎么做呢,请看代码
/**
* 生成二维码的方法
*
* @param address
* @return
*/
private Bitmap createQRImage(String address) {
try {
//判断URL合法性
if (address == null || "".equals(address) || address.length() < 1) {
return null;
}
Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
//图像数据转换,使用了矩阵转换
BitMatrix bitMatrix = new QRCodeWriter().encode(address, BarcodeFormat.QR_CODE, QR_WIDTH, QR_HEIGHT, hints);
int[] pixels = new int[QR_WIDTH * QR_HEIGHT];
//下面这里按照二维码的算法,逐个生成二维码的图片,
//两个for循环是图片横列扫描的结果
for (int y = 0; y < QR_HEIGHT; y++) {
for (int x = 0; x < QR_WIDTH; x++) {
if (bitMatrix.get(x, y)) {
pixels[y * QR_WIDTH + x] = 0xff000000;
} else {
pixels[y * QR_WIDTH + x] = 0xffffffff;
}
}
}
//生成二维码图片的格式,使用ARGB_8888
bitmap = Bitmap.createBitmap(QR_WIDTH, QR_HEIGHT, Bitmap.Config.ARGB_8888);
bitmap.setPixels(pixels, 0, QR_WIDTH, 0, 0, QR_WIDTH, QR_HEIGHT);
//显示到一个ImageView上面
imgQrcode.setImageBitmap(bitmap);
} catch (WriterException e) {
e.printStackTrace();
}
return bitmap;
}
最后返回Bitmap对象,剩下的就交给你处理了。
原文地址:http://hedgehog.love/2016/03/06/String-converted-into-Bitmap/转载请注明出处!
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。