Android生成二维码图片可带logo中间自定义图

最近写了一个二维码生成功能,参考https://www.jianshu.com/p/b275e818de6a这个简主的代码终于做出来了,其实我是看了很多遍这个代码,也敲了很多遍,因为复制过去全是错,哎,最后一次要放弃的时候是我看到了很多喜欢,还有评论都成功了,于是乎我又专心把代码的错误根据提示改,都没相信会成功,好吧,是我太懒了,只想复制过来就能用。后来生成二维码后觉得不够还应该生成带有logo图标的才更perfect呢,继续查找资料,后来在https://www.jianshu.com/p/9a1387840cd6这篇简书上面成功实现带logo的图标,也有不带logo的,应为觉得这一片更全面,所以就附上这篇代码加点个人理解进去。

首先导入Zxing jar包,我是通过在app文件下的build.gradle dependencies里添加 compile 'com.google.zxing:core:3.3.0',然后同步一下(右上角Sync now),也可以自行下载在项目中配置导入,我就只附个不收费的下载地址,其他自行百度一下。

主要是我们的代码

先把大头给贴出来

   public static class QRCode {
        /**
         * 生成二维码,默认大小为500*500
         * @param url 需要生成二维码的网址,也可以是文字
         * @param size 需要生成二维码的大小()
         * @return bitmap
         */
        public static Bitmap createQRCode(String url) {
            return createQRCode(url, 500);
        }
        public static Bitmap createQRCode(String url, int size) {
            try {
                Hashtable<EncodeHintType, String> hints = new Hashtable<>();
                hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
                BitMatrix bitMatrix = new QRCodeWriter().encode(url,
                        BarcodeFormat.QR_CODE, size, size, hints);
                int[] pixels = new int[size * size];
                for (int y = 0; y < size; y++) {
                    for (int x = 0; x < size; x++) {
                        if (bitMatrix.get(x, y)) {
                            pixels[y * size + x] = 0xff000000;
                        } else {
                            pixels[y * size + x] = 0xffffffff;
                        }

                    }
                }
                Bitmap bitmap = Bitmap.createBitmap(size, size,
                        Bitmap.Config.ARGB_8888);
                bitmap.setPixels(pixels, 0, size, 0, 0, size, size);
                return bitmap;
            } catch (WriterException e) {
                e.printStackTrace();
                return null;
            }
        }

        /**
         * 生成带logo的二维码,默认二维码的大小为500,logo为二维码的1/5
         * @param url 需要生成二维码的文字、网址等
         * @param size 需要生成二维码的大小()
         * @param mBitmap logo文件
         * @return bitmap
         */
        private static int IMAGE_HALFWIDTH = 50;//宽度值,影响中间图片大小
        public static Bitmap createQRCodeWithLogo(String url, Bitmap mBitmap) {
            return createQRCodeWithLogo(url,500,mBitmap);
        }
        public static Bitmap createQRCodeWithLogo(String url, int size, Bitmap mBitmap) {
            try {
                IMAGE_HALFWIDTH = size/10;
                Hashtable<EncodeHintType, Object> hints = new Hashtable<>();
                hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
                /*
                 * 设置容错级别,默认为ErrorCorrectionLevel.L
                 * 因为中间加入logo所以建议你把容错级别调至H,否则可能会出现识别不了
                 */
                hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
                BitMatrix bitMatrix = new QRCodeWriter().encode(url,
                        BarcodeFormat.QR_CODE, size, size, hints);

                int width = bitMatrix.getWidth();//矩阵高度
                int height = bitMatrix.getHeight();//矩阵宽度
                int halfW = width / 2;
                int halfH = height / 2;

                Matrix m = new Matrix();
                float sx = (float) 2 * IMAGE_HALFWIDTH / mBitmap.getWidth();
                float sy = (float) 2 * IMAGE_HALFWIDTH
                        / mBitmap.getHeight();
                m.setScale(sx, sy);
                //设置缩放信息
                //将logo图片按martix设置的信息缩放
                mBitmap = Bitmap.createBitmap(mBitmap, 0, 0,
                        mBitmap.getWidth(), mBitmap.getHeight(), m, false);

                int[] pixels = new int[size * size];
                for (int y = 0; y < size; y++) {
                    for (int x = 0; x < size; x++) {
                        if (x > halfW - IMAGE_HALFWIDTH && x < halfW + IMAGE_HALFWIDTH
                                && y > halfH - IMAGE_HALFWIDTH
                                && y < halfH + IMAGE_HALFWIDTH) {
                            //该位置用于存放图片信息
                            //记录图片每个像素信息
                            pixels[y * width + x] = mBitmap.getPixel(x - halfW
                                    + IMAGE_HALFWIDTH, y - halfH + IMAGE_HALFWIDTH);
                        } else {
                            if (bitMatrix.get(x, y)) {
                                pixels[y * size + x] = 0xff000000;
                            } else {
                                pixels[y * size + x] = 0xffffffff;
                            }
                        }
                    }
                }
                Bitmap bitmap = Bitmap.createBitmap(size, size,
                        Bitmap.Config.ARGB_8888);
                bitmap.setPixels(pixels, 0, size, 0, 0, size, size);
                return bitmap;
            } catch (WriterException e) {
                e.printStackTrace();
                return null;
            }
        }
    }

之后是调用了,在需要的地方,比如onCreateView 、initView、onClick函数里面

View view = inflater.inflate(R.layout.share_haibao, container, false);
erweiimg = (ImageView) view.findViewById(R.id.erweima);//获取要生成的二维码图片组件

Bitmap bitmap = QRCode.createQRCode(mShareUrl, 500);//不需要logo,传入分享链接和二维码图片大小
//需要logo,传入分享链接,二维码大小以及logo图片
//Bitmap bitmap = QRCode.createQRCodeWithLogo(mShareUrl, 500, BitmapFactory.decodeResource(getResources(),R.drawable.logo_icon));

erweiimg.setImageBitmap(bitmap);

猜你喜欢

转载自blog.csdn.net/qq_37291064/article/details/89403928