碰到了一個問題,需求是要將每個老人的二維碼展現在前臺,能夠讓不一樣的子女去掃描老人的二維碼,以達到快速綁定老人信息,咱們日常掃描二維碼的時候,是將二維碼的信息解析爲字符串等,如今恰好是反着來的。具體怎麼作呢,請看代碼算法
/** * 生成二維碼的方法 * * @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對象,剩下的就交給你處理了。code
原文地址:http://hedgehog.love/2016/03/06/String-converted-into-Bitmap/轉載請註明出處!orm