Android:使用ZXing產生二維碼(支援添加Logo圖案)
ZXing是Google的一個開源庫,可以用來產生二維碼、掃描二維碼。本文所介紹的是第一部分。
首先上:
ZXing相關各種檔案官方:https://github.com/zxing/zxing/releases
或者在這裡下載(只有本項目所用的jar包,版本號碼:3.2.0):連結: http://pan.baidu.com/s/1hq3s5EW 密碼: mvg7
1.產生二維碼的工具類
/** * 二維碼產生工具類 */public class QRCodeUtil { /** * 產生二維碼Bitmap * * @param content 內容 * @param widthPix 圖片寬度 * @param heightPix 圖片高度 * @param logoBm 二維碼中心的Logo表徵圖(可以為null) * @param filePath 用於儲存二維碼圖片的檔案路徑 * @return 產生二維碼及儲存檔案是否成功 */ public static boolean createQRImage(String content, int widthPix, int heightPix, Bitmap logoBm, String filePath) { try { if (content == null || "".equals(content)) { return false; } //配置參數 Map hints = new HashMap<>(); hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); //容錯層級 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); //設定空白邊距的寬度// hints.put(EncodeHintType.MARGIN, 2); //default is 4 // 映像資料轉換,使用了矩陣轉換 BitMatrix bitMatrix = new QRCodeWriter().encode(content, BarcodeFormat.QR_CODE, widthPix, heightPix, hints); int[] pixels = new int[widthPix * heightPix]; // 下面這裡按照二維碼的演算法,逐個產生二維碼的圖片, // 兩個for迴圈是圖片橫列掃描的結果 for (int y = 0; y < heightPix; y++) { for (int x = 0; x < widthPix; x++) { if (bitMatrix.get(x, y)) { pixels[y * widthPix + x] = 0xff000000; } else { pixels[y * widthPix + x] = 0xffffffff; } } } // 產生二維碼圖片的格式,使用ARGB_8888 Bitmap bitmap = Bitmap.createBitmap(widthPix, heightPix, Bitmap.Config.ARGB_8888); bitmap.setPixels(pixels, 0, widthPix, 0, 0, widthPix, heightPix); if (logoBm != null) { bitmap = addLogo(bitmap, logoBm); } //必須使用compress方法將bitmap儲存到檔案中再進行讀取。直接返回的bitmap是沒有任何壓縮的,記憶體消耗巨大! return bitmap != null && bitmap.compress(Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(filePath)); } catch (WriterException | IOException e) { e.printStackTrace(); } return false; } /** * 在二維碼中間添加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; }}2.在Activity中的使用:
/** * 二維碼產生 */public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //內容 final EditText contentET = (EditText) findViewById(R.id.create_qr_content); //顯示二維碼圖片 final ImageView imageView = (ImageView) findViewById(R.id.create_qr_iv); //是否添加Logo final CheckBox addLogoCB = (CheckBox) findViewById(R.id.create_qr_addLogo); Button createQrBtn = (Button) findViewById(R.id.create_qr_btn); createQrBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { final String filePath = getFileRoot(MainActivity.this) + File.separator + "qr_" + System.currentTimeMillis() + ".jpg"; //二維碼圖片較大時,產生圖片、儲存檔案的時間可能較長,因此放在新線程中 new Thread(new Runnable() { @Override public void run() { boolean success = QRCodeUtil.createQRImage(contentET.getText().toString().trim(), 800, 800, addLogoCB.isChecked() ? BitmapFactory.decodeResource(getResources(), R.mipmap.qr_logo) : null, filePath); if (success) { runOnUiThread(new Runnable() { @Override public void run() { imageView.setImageBitmap(BitmapFactory.decodeFile(filePath)); } }); } } }).start(); } }); } //檔案儲存體根目錄 private String getFileRoot(Context context) { if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { File external = context.getExternalFilesDir(null); if (external != null) { return external.getAbsolutePath(); } } return context.getFilesDir().getAbsolutePath(); }}
3.本項目中圖片檔案儲存在
context.getExternalFilesDir(null)
目錄之下的。按照官方的api文檔,從KitKat開始(Android 4.4),儲存檔案到這個目錄下將不需要SD卡讀寫權限。但是經過測驗表明,在紅米Note和魅族MX3上(系統均為android 4.4.4),的確不需要許可權;但是在本人的華為P6上(Android 4.4.2),必須聲明許可權才能成功的儲存檔案,即必須在manifest中添加如下內容:
因此,個人猜測,所謂的不需要許可權是從 Android 4.4.4開始的。