亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android 帶logo的二維碼詳解及實例

發布時間:2020-08-23 09:20:07 來源:腳本之家 閱讀:96 作者:lqh 欄目:移動開發

Android 帶logo的二維碼詳解及實例

好久沒有寫博客了,快元旦了公司的事情也不是很多,剛好和朋友一起出去玩玩,朋友是搞PHP的說到了每天在公司都是搞些什么二維碼和微信支付的相關東西,因為上班的時間不忙,所以隨便來搞下。

二維碼(Quick Response Code),又稱二維條碼,它是用特定的幾何圖形按一定規律在平面(二維方向)上分布的黑白相間的圖形,是所有信息數據的一把鑰匙。在現代商業活動中,如果一個產品是不能通過二維碼來進行訪問什么的,顯然是不成功的。用的比較多的生成二維碼的jar包有Zxing.jar和core.jar,其實里面用到的都是com.google.zxing里面的東西,基本上是大同小異。

直接上代碼:

activity_main.xml

<RelativeLayout xmlns:Android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context="com.example.MainActivity" >
  <ImageView
    android:id="@+id/code"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="@string/hello_world" />
</RelativeLayout>

MainActivity

package com.example;

import Java.util.Hashtable;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.os.Bundle;
import android.widget.ImageView;
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;
public class MainActivity extends Activity {
  private ImageView code;
  private final int QR_WIDTH=300;
  private final int QR_HEIGHT=300;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 code=(ImageView) findViewById(R.id.code);
 createImage("weixin") ;
 }
 // 生成QR圖
  private void createImage(String text) {
    try {
      // 需要引入core包
      QRCodeWriter writer = new QRCodeWriter();
      // 把輸入的文本轉為二維碼
      BitMatrix martix = writer.encode(text, BarcodeFormat.QR_CODE,
          QR_WIDTH, QR_HEIGHT);
     //圖像數據轉換,使用了矩陣轉換
    Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
      hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
      BitMatrix bitMatrix = new QRCodeWriter().encode(text,
          BarcodeFormat.QR_CODE, QR_WIDTH, QR_HEIGHT, hints);
      int[] pixels = new int[QR_WIDTH * QR_HEIGHT];
      for (int y = 0; y < QR_HEIGHT; y++) {
//下面這里按照二維碼的算法,逐個生成二維碼的圖片,//兩個for循環是圖片橫列掃描的結果
        for (int x = 0; x < QR_WIDTH; x++) {
          if (bitMatrix.get(x, y)) {
            pixels[y * QR_WIDTH + x] = 0xff000000;//黑色
          } else {
            pixels[y * QR_WIDTH + x] = 0xffffffff;//白色
          }
        }
      }
   //------------------添加圖片部分------------------//
  Bitmap logoBmp = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
      Bitmap bitmap = Bitmap.createBitmap(QR_WIDTH, QR_HEIGHT,
          Bitmap.Config.ARGB_8888);
//設置像素點
      bitmap.setPixels(pixels, 0, QR_WIDTH, 0, 0, QR_WIDTH, QR_HEIGHT);
      
      Canvas canvas = new Canvas(bitmap);
     //二維碼
     canvas.drawBitmap(bitmap, 0,0, null);
     //圖片繪制在二維碼中央,合成二維碼圖片
  canvas.drawBitmap(logoBmp, bitmap.getWidth() / 2
   - logoBmp.getWidth() / 2, bitmap.getHeight()
   / 2 - logoBmp.getHeight() / 2, null);
  //------------------添加logo部分------------------//
      code.setImageBitmap(bitmap);
     
    } catch (WriterException e) {
      e.printStackTrace();
    }
  }
 
}

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长乐市| 渭源县| 遂平县| 永顺县| 丹江口市| 牟定县| 商河县| 庆安县| 柳河县| 夏津县| 海晏县| 沈阳市| 观塘区| 邹平县| 泰来县| 蓝山县| 康乐县| 贡觉县| 黎平县| 柏乡县| 庆元县| 金门县| 沂源县| 诸城市| 紫阳县| 富民县| 绵阳市| 宁乡县| 公安县| 普兰店市| 禹城市| 星子县| 扎鲁特旗| 湘西| 思南县| 松滋市| 伊金霍洛旗| 体育| 望江县| 尉犁县| 萝北县|