android加载二维码带中间logo
很简单的,我也是先看了很多博客,然后总结了一下,感谢万能的网友
1导入依赖
//二维码加载依赖 implementation 'com.google.zxing:core:3.3.0'
implementation 和 compile 之间的区别可以百度下,我使用前者,很快
2,建立工具类
import android.graphics.Bitmap; import android.graphics.Canvas; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.WriterException; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.QRCodeWriter; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; import java.util.HashMap; import java.util.Map; /** * 二维码生成工具类 * Created by Quan * on 2019/2/13. */ public class ZXingUtils { /** * 生成带logo二维码 * 要转换的地址或字符串,可以是中文 * * @param url * @param width * @param height * @param logoBm * @return */ public static Bitmap createQRImage(String url, final int width, final int height,Bitmap logoBm) { try { // 判断URL合法性 if (url == null || "".equals(url) || url.length() < 1) { return null; } //配置参数 Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>(); //容错级别 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); //设置空白边距的宽度 hints.put(EncodeHintType.MARGIN, 1); //default is 4 hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); // 图像数据转换,使用了矩阵转换 BitMatrix bitMatrix = new QRCodeWriter().encode(url, BarcodeFormat.QR_CODE, width, height, hints); int[] pixels = new int[width * height]; // 下面这里按照二维码的算法,逐个生成二维码的图片, // 两个for循环是图片横列扫描的结果 for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { if (bitMatrix.get(x, y)) { pixels[y * width + x] = 0xff000000; } else { pixels[y * width + x] = 0xffffffff; } } } // 生成二维码图片的格式,使用ARGB_8888 Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); bitmap.setPixels(pixels, 0, width, 0, 0, width, height); if (logoBm != null) { bitmap = addLogo(bitmap, logoBm); } return bitmap; } catch (WriterException e) { e.printStackTrace(); } return null; } /** * 在二维码中间添加Logo图案 */ private static Bitmap addLogo(Bitmap src, Bitmap logo) { if (src == null) { return null; } if (logo == null) { return src; } //获取图片的宽高 int srcWidth = src.getWidth(); int srcHeight = src.getHeight(); int logoWidth = logo.getWidth(); int logoHeight = logo.getHeight(); if (srcWidth == 0 || srcHeight == 0) { return null; } if (logoWidth == 0 || logoHeight == 0) { return src; } //logo大小为二维码整体大小的1/5 float scaleFactor = srcWidth * 1.0f / 5 / logoWidth; Bitmap bitmap = Bitmap.createBitmap(srcWidth, srcHeight, Bitmap.Config.ARGB_8888); try { Canvas canvas = new Canvas(bitmap); canvas.drawBitmap(src, 0, 0, null); canvas.scale(scaleFactor, scaleFactor, srcWidth / 2, srcHeight / 2); canvas.drawBitmap(logo, (srcWidth - logoWidth) / 2, (srcHeight - logoHeight) / 2, null); canvas.save(Canvas.ALL_SAVE_FLAG); canvas.restore(); } catch (Exception e) { bitmap = null; e.getStackTrace(); } return bitmap; } }
3 在需要出调用
Bitmap bitmap = ZXingUtils.createQRImage(content, imgparams.width, imgparams.height, BitmapFactory.decodeResource(getResources(), R.mipmap.logo)); mImageView.setImageBitmap(bitmap); mImageView.setLayoutParams(imgparams);
4 简单说明
addLogo()方法是添加中间图片的,在生成二维码的方法中调用,使用的时候传入4个参数
* @param url 文字或者地址信息
* @param width 二维码图片的宽
* @param height 二维码图片的高
* @param logoBm logo文件素材
mImageView 是生成二维码的控件
好了,很简单吧