2019-08-19 生成二维码/条形码

添加依赖库:


compile'com.google.zxing:core:3.2.1'

compile'cn.bingoogolapple:bga-qrcodecore:1.1.7@aar'

compile'cn.bingoogolapple:bga-zxing:1.1.7@aar'

添加ZXingUtils.java类:


/**

*  生成条形码和二维码的工具

*/

public class ZXingUtils {

/**

* 生成二维码 要转换的地址或字符串,可以是中文

*

    * @param url

    * @param width

    * @param height

    * @return

    */

    public static BitmapcreateQRImage(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");

            // 图像数据转换,使用了矩阵转换

            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);

            return bitmap;

        }catch (WriterException e) {

e.printStackTrace();

        }

return null;

    }

/**

* 生成条形码

*

    * @param context

    * @param contents

    *            需要生成的内容

    * @param desiredWidth

    *            生成条形码的宽带

    * @param desiredHeight

    *            生成条形码的高度

    * @param displayCode

    *            是否在条形码下方显示内容

    * @return

    */

    public static BitmapcreatBarcode(Context context, String contents,

                                      int desiredWidth, int desiredHeight, boolean displayCode) {

Bitmap ruseltBitmap =null;

        /**

* 图片两端所保留的空白的宽度

*/

        int marginW =20;

        /**

* 条形码的编码类型

*/

        BarcodeFormat barcodeFormat = BarcodeFormat.CODE_128;

        if (displayCode) {

Bitmap barcodeBitmap =encodeAsBitmap(contents, barcodeFormat,

                    desiredWidth, desiredHeight);

            Bitmap codeBitmap =creatCodeBitmap(contents, desiredWidth +2

                    * marginW, desiredHeight, context);

            ruseltBitmap =mixtureBitmap(barcodeBitmap, codeBitmap, new PointF(

0, desiredHeight));

        }else {

ruseltBitmap =encodeAsBitmap(contents, barcodeFormat,

                    desiredWidth, desiredHeight);

        }

return ruseltBitmap;

    }

/**

* 生成条形码的Bitmap

*

    * @param contents

    *            需要生成的内容

    * @param format

    *            编码格式

    * @param desiredWidth

    * @param desiredHeight

    * @return

    * @throws WriterException

*/

    protected static BitmapencodeAsBitmap(String contents,

                                          BarcodeFormat format, int desiredWidth, int desiredHeight) {

final int WHITE =0xFFFFFFFF;

        final int BLACK =0xFF000000;

        MultiFormatWriter writer =new MultiFormatWriter();

        BitMatrix result =null;

        try {

result = writer.encode(contents, format, desiredWidth,

                    desiredHeight, null);

        }catch (WriterException e) {

// TODO Auto-generated catch block

            e.printStackTrace();

        }

int width = result.getWidth();

        int height = result.getHeight();

        int[] pixels =new int[width * height];

        // All are 0, or black, by default

        for (int y =0; y < height; y++) {

int offset = y * width;

            for (int x =0; x < width; x++) {

pixels[offset + x] = result.get(x, y) ? BLACK : WHITE;

            }

}

Bitmap bitmap = Bitmap.createBitmap(width, height,

                Bitmap.Config.ARGB_8888);

        bitmap.setPixels(pixels, 0, width, 0, 0, width, height);

        return bitmap;

    }

/**

* 生成显示编码的Bitmap

*

    * @param contents

    * @param width

    * @param height

    * @param context

    * @return

    */

    protected static BitmapcreatCodeBitmap(String contents, int width,

                                            int height, Context context) {

TextView tv =new TextView(context);

        ViewGroup.LayoutParams layoutParams =new ViewGroup.LayoutParams(

ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);

        tv.setLayoutParams(layoutParams);

        tv.setText(contents);

        tv.setHeight(height);

        tv.setGravity(Gravity.CENTER_HORIZONTAL);

        tv.setWidth(width);

        tv.setDrawingCacheEnabled(true);

        tv.setTextColor(Color.BLACK);

        tv.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED),

                View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));

        tv.layout(0, 0, tv.getMeasuredWidth(), tv.getMeasuredHeight());

        tv.buildDrawingCache();

        Bitmap bitmapCode = tv.getDrawingCache();

        return bitmapCode;

    }

/**

* 将两个Bitmap合并成一个

*

    * @param first

    * @param second

    * @param fromPoint

    *            第二个Bitmap开始绘制的起始位置(相对于第一个Bitmap)

    * @return

    */

    protected static BitmapmixtureBitmap(Bitmap first, Bitmap second,

                                          PointF fromPoint) {

if (first ==null || second ==null || fromPoint ==null) {

return null;

        }

int marginW =20;

        Bitmap newBitmap = Bitmap.createBitmap(

first.getWidth() + second.getWidth() + marginW,

                first.getHeight() + second.getHeight(), Bitmap.Config.ARGB_4444);

        Canvas cv =new Canvas(newBitmap);

        cv.drawBitmap(first, marginW, 0, null);

        cv.drawBitmap(second, fromPoint.x, fromPoint.y, null);

        cv.save();

        cv.restore();

        return newBitmap;

    }

}


生成二维码代码和效果:

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    imageView = findViewById(R.id.imageview);

    bitmap = ZXingUtils.createQRImage("你好", 600, 600);

    //bitmap=  ZXingUtils.creatBarcode(this,"8556616316",200,50,true);

    imageView.setImageBitmap(bitmap);

}



生成条形码代码和效果:

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    imageView = findViewById(R.id.imageview);

    //bitmap = ZXingUtils.createQRImage("你好", 600, 600);

    bitmap=  ZXingUtils.creatBarcode(this,"8556616316",200,50,true);

    imageView.setImageBitmap(bitmap);

}



©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容