博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android利用ZXing绘制渐变色二维码
阅读量:6847 次
发布时间:2019-06-26

本文共 4114 字,大约阅读时间需要 13 分钟。

绘制二维码

前几天接到项目说要改版的消息,果然事情马上来了。打开蓝湖一看——从左到右渐变色的二维码想了一下确实没搞过,就懒得翻以前的代码了,自己动手丰衣足食!

话不多说,上效果图

上代码

public static Bitmap createQRGradientImage(String url, final int width, final int height){
    try {
        // 判断URL合法性         if (url == null || "".equals(url) || url.length() < 1){
            return null;         }         Hashtable
 hints = new Hashtable();         hints.put(EncodeHintType.CHARACTER_SET, "utf-8");         hints.put(EncodeHintType.MARGIN, 0);         // 图像数据转换,使用了矩阵转换         BitMatrix bitMatrix = new QRCodeWriter().encode(url,                 BarcodeFormat.QR_CODE, width, height, hints);         int[] pixels = new int[width * height];         /*         普通二维码绘制         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;                 }             }         }          */         // 渐变色 从上到下绘制        for (int y = 0; y < height; y++){
           for (int x = 0; x < width; x++) {
               if (bitMatrix.get(x, y)) {
// 二维码颜色                     int red = (int)(56 - (56.0 - 14.0) / height * (y + 1));                     int green = (int)(247 - (247.0 - 145.0) / height * (y + 1));                    int blue =  (int)(195 - (195.0-79.0) / height * (y + 1));                     Color color = new Color();                     int colorInt = color.argb(255, red, green, blue);                     // 修改二维码的颜色,可以分别制定二维码和背景的颜色                     pixels[y * width + x] = bitMatrix.get(x, y) ? colorInt: 16777215;// 0x000000:0xffffff                 } else {
                    pixels[y * width + x] = 0x00ffffff;// 背景颜色                 }             }         }         // 生成二维码图片的格式,使用ARGB_8888         Bitmap bitmap = Bitmap.createBitmap(width, height,                 Bitmap.Config.ARGB_8888);         bitmap.setPixels(pixels, 0, width, 0, 0, width, height);         return bitmap;     } catch (WriterException e) {
        e.printStackTrace();     }     return null; } 复制代码

咦,不是说是从左到右吗——别着急,从左到右只是改一下绘制方向就行了

 //渐变色从左到右     for (int x = 0;x

效果图

kotlin版本

fun createQRGradientImage(url: String?, width: Int, height: Int): Bitmap? {
    try {
        // 判断URL合法性         if (url == null || "" == url || url.length < 1) {
            return null         }         val hints = Hashtable
()         hints.put(EncodeHintType.CHARACTER_SET, "utf-8")         hints.put(EncodeHintType.MARGIN, 0)         // 图像数据转换,使用了矩阵转换         val bitMatrix = QRCodeWriter().encode(             url,             BarcodeFormat.QR_CODE, width, height, hints         )         val pixels = IntArray(width * height)         // 渐变色 从左到右绘制         for (x in 0 until width) {
            for (y in 0 until height) {
                if (bitMatrix.get(x, y)) {
                    val red = (56 - (56.0 - 14.0) / height * (y + 1)).toInt()                     val green = (247 - (247.0 - 145.0) / height * (y + 1)).toInt()                     val blue = (195 - (195.0 - 79.0) / height * (y + 1)).toInt()                     val colorInt = argb(255, red, green, blue)                     // 修改二维码的颜色,可以分别制定二维码和背景的颜色                     pixels[x * height + y] = if (bitMatrix.get(x, y)) colorInt else 16777215// 0x000000:0xffffff                 } else {
                    pixels[x * height + y] = 0x00ffffff// 背景颜色                 }             }         }         // 生成二维码图片的格式,使用ARGB_8888         val bitmap = Bitmap.createBitmap(             width, height,             Bitmap.Config.ARGB_8888         )         bitmap.setPixels(pixels, 0, width, 0, 0, width, height)         return bitmap     } catch (e: WriterException) {
        e.printStackTrace()     }     return null } 复制代码

好了相信大家看过代码以后也发现其实不难,这里不单单只是二维码,里面的文字背景都是用Canvas画出来再合成为一张图片的,里面的字体,颜色,大小都是可以控制的,有兴趣的话下次在写一下相关的内容。

用的Zxing库是

implementation 'com.google.zxing:core:3.3.0'复制代码

转载于:https://juejin.im/post/5c3c2c40e51d45522851f1d1

你可能感兴趣的文章
15. 集成管理
查看>>
ArchLinux上安装SVN及检出项目
查看>>
后台(29)——动态代理
查看>>
【Cocos2d-x】开发基础-Cocos2d-x核心概念
查看>>
MyBatis(2):config.xml文件
查看>>
Sonar相关汇总
查看>>
重构——41引入断言(Introduce Assertion)
查看>>
用prototype 方法$A() uncheck radio button
查看>>
【框架】[Spring]AOP拦截-使用切点:AspectJExpressionPointcut-切点语言
查看>>
谈一谈Http Request 与 Http Response
查看>>
SQLSERVER使用密码加密备份文件以防止未经授权还原数据库
查看>>
惠普集团放弃Salesforce 采用微软的云端CRM
查看>>
什么是双码流技术?
查看>>
中兴通讯STN助力中国联通SD-UTN江苏现网测试圆满完成
查看>>
JUnit in java 真正的测试用例实战
查看>>
国际主流企业级硬盘(机械&固态)产品锦标赛 —— 国内首次企业级硬盘基准测试...
查看>>
业界"恶棍"Khosla向戴尔-EMC创新工作发出猛烈抨击
查看>>
传统企业转型时代,如何成为协同领域新标杆?
查看>>
大数据架构的未来
查看>>
《笑傲测试》笔记(第二式:蓬门始开)
查看>>