Android二維碼之創建

来源:http://www.cnblogs.com/ganchuanpu/archive/2017/03/25/6618948.html
-Advertisement-
Play Games

1.Android 有自帶的jar包可以生成二維碼core-3.0.0.jar,其中的com.google.zxing包 2.寫一個二維碼生成的工具類,網上搜的話應該一大堆。 1 package com.example.administrator.twocodedemo; 2 3 import an ...


1.Android 有自帶的jar包可以生成二維碼core-3.0.0.jar,其中的com.google.zxing包

2.寫一個二維碼生成的工具類,網上搜的話應該一大堆。

  1 package com.example.administrator.twocodedemo;
  2 
  3 import android.content.Context;
  4 import android.graphics.Bitmap;
  5 import android.graphics.Bitmap.Config;
  6 import android.graphics.Canvas;
  7 import android.graphics.Color;
  8 import android.graphics.PointF;
  9 import android.view.Gravity;
 10 import android.view.View.MeasureSpec;
 11 import android.widget.LinearLayout;
 12 import android.widget.LinearLayout.LayoutParams;
 13 import android.widget.TextView;
 14 
 15 import com.google.zxing.BarcodeFormat;
 16 import com.google.zxing.EncodeHintType;
 17 import com.google.zxing.MultiFormatWriter;
 18 import com.google.zxing.WriterException;
 19 import com.google.zxing.common.BitMatrix;
 20 import com.google.zxing.qrcode.QRCodeWriter;
 21 
 22 import java.util.Hashtable;
 23 
 24 /** 
 25 *
 26 *     生成條形碼和二維碼的工具
 27 */
 28 public class ZXingUtils {
 29     /**
 30      * 生成二維碼 要轉換的地址或字元串,可以是中文
 31      * 
 32      * @param url
 33      * @param width
 34      * @param height
 35      * @return
 36      */
 37     public static Bitmap createQRImage(String url, final int width, final int height) {
 38         try {
 39             // 判斷URL合法性
 40             if (url == null || "".equals(url) || url.length() < 1) {
 41                 return null;
 42             }
 43             Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
 44             hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
 45             // 圖像數據轉換,使用了矩陣轉換
 46             BitMatrix bitMatrix = new QRCodeWriter().encode(url,
 47                     BarcodeFormat.QR_CODE, width, height, hints);
 48             int[] pixels = new int[width * height];
 49             // 下麵這裡按照二維碼的演算法,逐個生成二維碼的圖片,
 50             // 兩個for迴圈是圖片橫列掃描的結果
 51             for (int y = 0; y < height; y++) {
 52                 for (int x = 0; x < width; x++) {
 53                     if (bitMatrix.get(x, y)) {
 54                         pixels[y * width + x] = 0xff000000;
 55                     } else {
 56                         pixels[y * width + x] = 0xffffffff;
 57                     }
 58                 }
 59             }
 60             // 生成二維碼圖片的格式,使用ARGB_8888
 61             Bitmap bitmap = Bitmap.createBitmap(width, height,
 62                     Bitmap.Config.ARGB_8888);
 63             bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
 64             return bitmap;
 65         } catch (WriterException e) {
 66             e.printStackTrace();
 67         }
 68         return null;
 69     }
 70 
 71     /**
 72      * 生成條形碼
 73      *
 74      * @param context
 75      * @param contents
 76      *            需要生成的內容
 77      * @param desiredWidth
 78      *            生成條形碼的寬頻
 79      * @param desiredHeight
 80      *            生成條形碼的高度
 81      * @param displayCode
 82      *            是否在條形碼下方顯示內容
 83      * @return
 84      */
 85     public static Bitmap creatBarcode(Context context, String contents,
 86                                       int desiredWidth, int desiredHeight, boolean displayCode) {
 87         Bitmap ruseltBitmap = null;
 88         /**
 89          * 圖片兩端所保留的空白的寬度
 90          */
 91         int marginW = 20;
 92         /**
 93          * 條形碼的編碼類型
 94          */
 95         BarcodeFormat barcodeFormat = BarcodeFormat.CODE_128;
 96 
 97         if (displayCode) {
 98             Bitmap barcodeBitmap = encodeAsBitmap(contents, barcodeFormat,
 99                     desiredWidth, desiredHeight);
100             Bitmap codeBitmap = creatCodeBitmap(contents, desiredWidth + 2
101                     * marginW, desiredHeight, context);
102             ruseltBitmap = mixtureBitmap(barcodeBitmap, codeBitmap, new PointF(
103                     0, desiredHeight));
104         } else {
105             ruseltBitmap = encodeAsBitmap(contents, barcodeFormat,
106                     desiredWidth, desiredHeight);
107         }
108 
109         return ruseltBitmap;
110     }
111 
112     /**
113      * 生成條形碼的Bitmap
114      *
115      * @param contents
116      *            需要生成的內容
117      * @param format
118      *            編碼格式
119      * @param desiredWidth
120      * @param desiredHeight
121      * @return
122      * @throws WriterException
123      */
124     protected static Bitmap encodeAsBitmap(String contents,
125                                            BarcodeFormat format, int desiredWidth, int desiredHeight) {
126         final int WHITE = 0xFFFFFFFF;
127         final int BLACK = 0xFF000000;
128 
129         MultiFormatWriter writer = new MultiFormatWriter();
130         BitMatrix result = null;
131         try {
132             result = writer.encode(contents, format, desiredWidth,
133                     desiredHeight, null);
134         } catch (WriterException e) {
135             // TODO Auto-generated catch block
136             e.printStackTrace();
137         }
138 
139         int width = result.getWidth();
140         int height = result.getHeight();
141         int[] pixels = new int[width * height];
142         // All are 0, or black, by default
143         for (int y = 0; y < height; y++) {
144             int offset = y * width;
145             for (int x = 0; x < width; x++) {
146                 pixels[offset + x] = result.get(x, y) ? BLACK : WHITE;
147             }
148         }
149 
150         Bitmap bitmap = Bitmap.createBitmap(width, height,
151                 Bitmap.Config.ARGB_8888);
152         bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
153         return bitmap;
154     }
155 
156     /**
157      * 生成顯示編碼的Bitmap
158      *
159      * @param contents
160      * @param width
161      * @param height
162      * @param context
163      * @return
164      */
165     protected static Bitmap creatCodeBitmap(String contents, int width,
166                                             int height, Context context) {
167         TextView tv = new TextView(context);
168         LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
169                 LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
170         tv.setLayoutParams(layoutParams);
171         tv.setText(contents);
172         tv.setHeight(height);
173         tv.setGravity(Gravity.CENTER_HORIZONTAL);
174         tv.setWidth(width);
175         tv.setDrawingCacheEnabled(true);
176         tv.setTextColor(Color.BLACK);
177         tv.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
178                 MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
179         tv.layout(0, 0, tv.getMeasuredWidth(), tv.getMeasuredHeight());
180 
181         tv.buildDrawingCache();
182         Bitmap bitmapCode = tv.getDrawingCache();
183         return bitmapCode;
184     }
185 
186     /**
187      * 將兩個Bitmap合併成一個
188      * 
189      * @param first
190      * @param second
191      * @param fromPoint
192      *            第二個Bitmap開始繪製的起始位置(相對於第一個Bitmap)
193      * @return
194      */
195     protected static Bitmap mixtureBitmap(Bitmap first, Bitmap second,
196                                           PointF fromPoint) {
197         if (first == null || second == null || fromPoint == null) {
198             return null;
199         }
200         int marginW = 20;
201         Bitmap newBitmap = Bitmap.createBitmap(
202                 first.getWidth() + second.getWidth() + marginW,
203                 first.getHeight() + second.getHeight(), Config.ARGB_4444);
204         Canvas cv = new Canvas(newBitmap);
205         cv.drawBitmap(first, marginW, 0, null);
206         cv.drawBitmap(second, fromPoint.x, fromPoint.y, null);
207         cv.save(Canvas.ALL_SAVE_FLAG);
208         cv.restore();
209 
210         return newBitmap;
211     }
212 
213 }
ZXingUtils

3.MainActivity

@OnClick({R.id.btn_create, R.id.iv_two_code})  
    public void onClick(View view) {  
        switch (view.getId()) {  
            case R.id.btn_create:  
  
                String url = etUrl.getText().toString().trim();  
                Bitmap bitmap = ZXingUtils.createQRImage(url, ivTwoCode.getWidth(), ivTwoCode.getHeight());  
                ivTwoCode.setImageBitmap(bitmap);  

例如:

String company=etCompany.getText().toString().trim() ;
                String phone =etPhone .getText().toString().trim() ; 
                String email = etEmail.getText().toString().trim() ;
                String web = etWeb.getText().toString().trim() ; 
                //二維碼中包含的文本信息
                String contents= "BEGIN:VCARD\nVERSION:3.0\nORG:"+company+"\nTEL:"+phone+"\nURL:"+web+"\nEMAIL:"+email+"\nEND:VCARD";
            try {
                //調用方法createCode生成二維碼
        Bitmap bm=createCode(contents, logo, BarcodeFormat.QR_CODE);
        

  

  

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 簡單工廠模式解釋: 簡單工廠模式(Simple Factory Pattern)屬於類的創新型模式,又叫靜態工廠方法模式(Static FactoryMethod Pattern) 是通過專門定義一個類來負責創建其他類的實例,被創建的實例通常都具有共同的父類。 簡單工廠模式的UML圖: 簡單工廠模式 ...
  • https 和 SSH 的區別: 1、前者可以隨意克隆github上的項目,而不管是誰的;而後者則是你必須是你要克隆的項目的擁有者或管理員,且需要先添加 SSH key ,否則無法克隆。 2、https url 在push的時候是需要驗證用戶名和密碼的;而 SSH 在push的時候,是不需要輸入用戶 ...
  • 什麼是構建配置文件? 生成配置文件是一組可以用來設置或覆蓋 Maven 構建配置值的預設值。使用生成配置文件,你可以針對不同的環境,如:生產V/S開發環境自定義構建。 配置文件中指定 pom.xml 文件使用其配置文件/配置文件元素和多種方式來觸發。配置文件修改 POM 後,在編譯的時候是用來給不同 ...
  • 上一章我們完善了服務層的設計,傳送門:項目架構開發:服務層(下) 這次我們來完成項目的單機部署與集群部署,我們來看看單機部署與登錄 單機部署很簡單,這裡就不演示了,要註意的是我們用的是session來保存登錄信息 雖然Session不安全,比如sessionid被截獲那就可以在任何地方用你的賬號登錄 ...
  • 1、XML佈局引入 2、設置數據源數據,也就是每個item的對應文本數據 3、設置監聽,用於交互點擊和長按的事件 4、開始排序和結束排序的介面 未完善的自定義功能 1、現在僅僅是支持String,並且佈局也無法自定義,後續可能會完善Tab的item的View的自定義輸入 2、現在佈局的行數和間距由硬 ...
  • BadgeView是第三方的插件,用來顯示組件上面的標記,起到提醒的作用,下載地址如下:http://files.cnblogs.com/files/hyyweb/android-viewbadger.zip 如示意圖: 首先導入BadgeView的jar包到libs文件夾下,然後就可以使用它提供的 ...
  • 在Android原生的TextView的基礎上,可收縮/擴展的TextView:PhilExpandableTextView。 實現原理:核心是控制TextView的max lines。在TextView的初始化階段但尚未繪製出View的時候,使用ViewTreeObserver,監聽onPreDr ...
  • 在Android系統中,BroadcastReceiver的設計初衷就是從全局考慮的,可以方便應用程式和系統、應用程式之間、應用程式內的通信,所以對單個應用程式而言BroadcastReceiver是存在安全性問題的,相應問題及解決如下: 1、當應用程式發送某個廣播時系統會將發送的Intent與系統 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...