广告
返回顶部
首页 > 资讯 > 移动开发 >Android二维码创建实例
  • 775
分享到

Android二维码创建实例

Android 2022-06-06 01:06:42 775人浏览 泡泡鱼
摘要

Android二维码之创建 实现效果图: 1.Android 有自带的jar包可以生成二维码core-3.0.0.jar,其中的com.Google.zxing包 2.写一个

Android二维码之创建

实现效果图:

1.Android 有自带的jar包可以生成二维码core-3.0.0.jar,其中的com.Google.zxing包

2.写一个二维码生成的工具类,网上搜的话应该一大堆。

实例代码:


package com.example.administrator.twocodedemo;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.canvas;
import android.graphics.Color;
import android.graphics.PointF;
import android.view.Gravity;
import android.view.View.MeasureSpec;
import android.widget.LinearLayout;
import android.widget.LinearLayout.LayoutParams;
import android.widget.TextView;
import com.google.zxing.BarcodeFORMat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;
import java.util.Hashtable;

public class ZXingUtils {
  
  public static Bitmap createQRImage(String url, final int width, final int height) {
    try {
      // 判断URL合法性
      if (url == null || "".equals(url) || url.length() < 1) {
        return null;
      }
      Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
      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;
  }
  
  public static Bitmap creatBarcode(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;
  }
  
  protected static Bitmap encodeAsBitmap(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;
  }
  
  protected static Bitmap creatCodeBitmap(String contents, int width,
                      int height, Context context) {
    TextView tv = new TextView(context);
    LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
        LayoutParams.MATCH_PARENT, 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(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
        MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
    tv.layout(0, 0, tv.getMeasuredWidth(), tv.getMeasuredHeight());
    tv.buildDrawingCache();
    Bitmap bitmapCode = tv.getDrawingCache();
    return bitmapCode;
  }
  
  protected static Bitmap mixtureBitmap(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(), Config.ARGB_4444);
    Canvas cv = new Canvas(newBitmap);
    cv.drawBitmap(first, marginW, 0, null);
    cv.drawBitmap(second, fromPoint.x, fromPoint.y, null);
    cv.save(Canvas.ALL_SAVE_FLAG);
    cv.restore();
    return newBitmap;
  }
}
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);

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:Android从图片获取二维码的方法Android中google Zxing实现二维码与条形码扫描Android基于zxing的二维码(网格)扫描 仿支付宝网格扫描Android中使用ZXing生成二维码(支持添加Logo图案)Android利用ZXing扫描二维码的实例代码解析Android项目实战(二十八):使用Zxing实现二维码及优化实例Android实现二维码扫描和生成的简单方法Android扫描二维码时出现用户禁止权限报错问题解决办法


--结束END--

本文标题: Android二维码创建实例

本文链接: https://www.lsjlt.com/news/21795.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作