二維碼ZXing

基于https://github.com/zxing/zxing

實現

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

首先一個maven 網站:http://search.maven.org/
輸入 ZXing

76E6.tmp.png

找到core (為什么是這個,不多說)

8CC4.tmp.png

點擊版本號

EB2D.tmp.png

可以看到Gradle/Grails下的 compile,將其放入


D849.tmp.png

編譯一下便可以了;
下面介紹一下生成:

F35.tmp.png

利用一個工具類:

package com.example.hante.newpro.custome;
import android.graphics.Bitmap;
import android.graphics.Matrix;

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.Hashtable;

public class QRCode {
    private static int IMAGE_HALFWIDTH = 50;//寬度值,影響中間圖片大小

    /**
     * 生成二維碼,默認大小為500*500
     *
     * @return bitmap
     */
    public static Bitmap createQRCode() {
        return createQRCode();
    }

    /**
     * 生成二維碼,默認大小為500*500
     *
     * @param text 需要生成二維碼的文字、網址等
     * @return bitmap
     */
    public static Bitmap createQRCode(String text) {
        return createQRCode(text, 500);
    }

    /**
     * 生成二維碼
     *
     * @param text 需要生成二維碼的文字、網址等
     * @param size 需要生成二維碼的大小()
     * @return bitmap
     */
    public static Bitmap createQRCode(String text, int size) {
        try {
            Hashtable<EncodeHintType, String> hints = new Hashtable<>();
            hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
            BitMatrix bitMatrix = new QRCodeWriter().encode(text,
                    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 text 需要生成二維碼的文字、網址等
     * @param mBitmap logo文件
     * @return bitmap
     */
    public static Bitmap createQRCodeWithLogo(String text, Bitmap mBitmap) {
        return createQRCodeWithLogo(text,500,mBitmap);
    }

    /**
     * 生成帶logo的二維碼,logo默認為二維碼的1/5
     *
     * @param text 需要生成二維碼的文字、網址等
     * @param size 需要生成二維碼的大小()
     * @param mBitmap logo文件
     * @return bitmap
     */
    public static Bitmap createQRCodeWithLogo(String text, 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(text,
                    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;
        }
    }
}

在Activity 中調用即可

Bitmap bitmap = QRCode.createQRCode(editText.getText().toString(), 500);
                imgCode.setImageBitmap(bitmap);

                Bitmap bitmap2 = QRCode.createQRCodeWithLogo(editText.getText().toString(), 500,
                        BitmapFactory.decodeResource(getResources(),R.drawable.logo_small));
                imgCodeImg.setImageBitmap(bitmap2);

以上親自測試!

如果需要去掉白色邊框:

Hashtable<EncodeHintType, Object> hints = new Hashtable<>();
hints.put(EncodeHintType.MARGIN, 0); // 可設置1 、2、3、4
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容