Android仿微信二维码和条形码

本文实例为大家分享了Android仿微信二维码和条形码的具体代码,供大家参考,具体内容如下

package your.QRCode.namespace;

import java.io.File;
import java.io.FileOutputStream;
import java.util.HashMap;
import java.util.Map;

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.decoder.ErrorCorrectionLevel;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.PointF;
import android.graphics.Rect;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.view.View.MeasureSpec;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class QRCodeTextActivityActivity extends Activity {
 /** Called when the activity is first created. */
 Button btn1 = null;
 Button btn2 = null;
 ImageView ivImageView = null;

 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.main);
 btn1 = (Button) findViewById(R.id.button1);// 条形码
 btn2 = (Button) findViewById(R.id.button2);// 二维码
 ivImageView = (ImageView) findViewById(R.id.imageView1);
 final String strconteString = "c2b0f58a6f09cafd1503c06ef08ac7aeb7ddb91a602dac145551c102143e6159e385cdc294";

 btn1.setOnClickListener(new View.OnClickListener() {
  public void onClick(View v) {
  Bitmap mBitmap = null;
  mBitmap = creatBarcode(QRCodeTextActivityActivity.this,
   strconteString, 300, 300, true);
  if (mBitmap != null) {
   ivImageView.setImageBitmap(mBitmap);
  }
  }
 });
 btn2.setOnClickListener(new View.OnClickListener() {
  public void onClick(View v) {
  Bitmap mBitmap = null;
  try {
   if (!strconteString.equals("")) {
   mBitmap = Create2DCode(strconteString);

   // Bitmap bm =
   // BitmapFactory.decodeResource(getResources(),
   // R.drawable.diagnose1);
   ivImageView.setImageBitmap(createBitmap(
    mBitmap,
    zoomBitmap(BitmapFactory.decodeResource(
     getResources(), R.drawable.cccc), 100,100)));
   }
  } catch (Exception e) {
   e.printStackTrace();
  }
  }
 });
 }

 public Bitmap Create2DCode(String str) throws WriterException {
 Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>();
 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
 hints.put(EncodeHintType.CHARACTER_SET, "GBK");
 // hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
 // 生成二维矩阵,编码时指定大小,不要生成了图片以后再进行缩放,这样会模糊导致识别失败
 BitMatrix matrix = new MultiFormatWriter().encode(str,
  BarcodeFormat.QR_CODE, 500, 500, hints);
 int width = matrix.getWidth();
 int height = matrix.getHeight();
 // 二维矩阵转为一维像素数组,也就是一直横着排了
 int[] pixels = new int[width * height];
 for (int i = 0; i < pixels.length; i++) {
  pixels[i] = 0xffffffff;
 }
 for (int y = 0; y < height; y++) {
  for (int x = 0; x < width; x++) {
  if (matrix.get(x, y)) {
   pixels[y * width + x] = 0xff000000;
  }
  }
 }
 Bitmap bitmap = Bitmap.createBitmap(width, height,
  Bitmap.Config.ARGB_8888);
 // 通过像素数组生成bitmap,具体参考api
 bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
 return bitmap;
 }

 public File GetCodePath(String name) {
 String EXTERN_PATH = null;
 if (Environment.getExternalStorageState().equals(
  Environment.MEDIA_MOUNTED) == true) {
  EXTERN_PATH = android.os.Environment.getExternalStorageDirectory()
   .getAbsolutePath() + "/";
  File f = new File(EXTERN_PATH);
  if (!f.exists()) {
  f.mkdirs();
  }
 }
 return new File(EXTERN_PATH + name);
 }

 /**
 * 图片两端所保留的空白的宽度
 */
 private int marginW = 20;
 /**
 * 条形码的编码类型
 */
 private BarcodeFormat barcodeFormat = BarcodeFormat.CODE_128;

 /**
 * 生成条形码
 *
 * @param context
 * @param contents
 *      需要生成的内容
 * @param desiredWidth
 *      生成条形码的宽带
 * @param desiredHeight
 *      生成条形码的高度
 * @param displayCode
 *      是否在条形码下方显示内容
 * @return
 */
 public Bitmap creatBarcode(Context context, String contents,
  int desiredWidth, int desiredHeight, boolean displayCode) {
 Bitmap ruseltBitmap = null;
 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;
 }

 /**
 * 生成显示编码的Bitmap
 *
 * @param contents
 * @param width
 * @param height
 * @param context
 * @return
 */
 protected Bitmap creatCodeBitmap(String contents, int width, int height,
  Context context) {
 TextView tv = new TextView(context);
 LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
  LayoutParams.FILL_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;
 }

 /**
 * 生成条形码的Bitmap
 *
 * @param contents
 *      需要生成的内容
 * @param format
 *      编码格式
 * @param desiredWidth
 * @param desiredHeight
 * @return
 * @throws WriterException
 */
 protected 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;
 }

 /**
 * 将两个Bitmap合并成一个
 *
 * @param first
 * @param second
 * @param fromPoint
 *      第二个Bitmap开始绘制的起始位置(相对于第一个Bitmap)
 * @return
 */
 protected Bitmap mixtureBitmap(Bitmap first, Bitmap second, PointF fromPoint) {
 if (first == null || second == null || fromPoint == null) {
  return null;
 }
 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;
 }

 /*** 仿微信二维码开始 ***/
 // 图片剪切
 public Bitmap cutBitmap(Bitmap mBitmap, Rect r, Bitmap.Config config) {
 int width = r.width();
 int height = r.height();
 Bitmap croppedImage = Bitmap.createBitmap(width, height, config);
 Canvas cvs = new Canvas(croppedImage);
 Rect dr = new Rect(0, 0, width, height);
 cvs.drawBitmap(mBitmap, r, dr, null);
 return croppedImage;
 }

 /***
 * 合并图片
 *
 * @param src
 * @param watermark
 * @return
 */
 private Bitmap createBitmap(Bitmap src, Bitmap watermark) {
 String tag = "createBitmap";
 Log.d(tag, "create a new bitmap");
 if (src == null) {
  return null;
 }
 int w = src.getWidth();
 int h = src.getHeight();
 int ww = watermark.getWidth();
 int wh = watermark.getHeight();
 // create the new blank bitmap
 Bitmap newb = Bitmap.createBitmap(w, h, Config.ARGB_8888);// 创建一个新的和SRC长度宽度一样的位图
 Canvas cv = new Canvas(newb);

 // draw src into
 cv.drawBitmap(src, 0, 0, null);// 在 0,0坐标开始画入src

 // 在src的中间画watermark
 cv.drawBitmap(watermark, w / 2 - ww / 2, h / 2 - wh / 2, null);// 设置ic_launcher的位置

 // save all clip
 cv.save(Canvas.ALL_SAVE_FLAG);// 保存
 // store
 cv.restore();// 存储
 return newb;
 }

 /***
 * 缩放图片
 *
 * @param src
 * @param destWidth
 * @param destHeigth
 * @return
 */
 private Bitmap zoomBitmap(Bitmap src, int destWidth, int destHeigth) {
 String tag = "lessenBitmap";
 if (src == null) {
  return null;
 }
 int w = src.getWidth();// 源文件的大小
 int h = src.getHeight();
 // calculate the scale - in this case = 0.4f
 float scaleWidth = ((float) destWidth) / w;// 宽度缩小比例
 float scaleHeight = ((float) destHeigth) / h;// 高度缩小比例
 Log.d(tag, "bitmap width is :" + w);
 Log.d(tag, "bitmap height is :" + h);
 Log.d(tag, "new width is :" + destWidth);
 Log.d(tag, "new height is :" + destHeigth);
 Log.d(tag, "scale width is :" + scaleWidth);
 Log.d(tag, "scale height is :" + scaleHeight);
 Matrix m = new Matrix();// 矩阵
 m.postScale(scaleWidth, scaleHeight);// 设置矩阵比例
 Bitmap resizedBitmap = Bitmap.createBitmap(src, 0, 0, w, h, m, true);// 直接按照矩阵的比例把源文件画入进行
 return resizedBitmap;
 }

}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical" android:background="#ffffff">

  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

  <Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="条形码" />

  <Button
    android:id="@+id/button2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="二维码" />

  <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
      android:id="@+id/imageView1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerHorizontal="true"
      android:layout_centerVertical="true"
      android:scaleType="fitXY"
      android:src="@drawable/ic_launcher" />

  </RelativeLayout>

</LinearLayout>

图片美工做下处理。貌似需要做一个描边。png透明背景

在加两个方法

/***
 * 缩放图片并加描边
 *
 * @param src
 * @param destWidth
 * @param destHeigth
 * @return
 */
 private Bitmap zoomBitmapBorder(Bitmap src, int destWidth, int destHeigth) {
 String tag = "lessenBitmap";
 if (src == null) {
  return null;
 }
 int w = src.getWidth();// 源文件的大小
 int h = src.getHeight();
 // calculate the scale - in this case = 0.4f
 float scaleWidth = ((float) destWidth - 4) / w;// 宽度缩小比例
 float scaleHeight = ((float) destHeigth - 4) / h;// 高度缩小比例
 Log.d(tag, "bitmap width is :" + w);
 Log.d(tag, "bitmap height is :" + h);
 Log.d(tag, "new width is :" + destWidth);
 Log.d(tag, "new height is :" + destHeigth);
 Log.d(tag, "scale width is :" + scaleWidth);
 Log.d(tag, "scale height is :" + scaleHeight);
 Matrix m = new Matrix();// 矩阵
 m.postScale(scaleWidth, scaleHeight);// 设置矩阵比例
 Bitmap resizedBitmap = Bitmap.createBitmap(src, 0, 0, w, h, m, true);// 直接按照矩阵的比例把源文件画入进行

 Bitmap newb = Bitmap.createBitmap(destWidth, destHeigth,
  Config.ARGB_8888);// 创建一个新的和SRC长度宽度一样的位图
 Canvas cv = new Canvas(newb);
 //cv.drawColor(R.color.white);
cv.drawRGB(0,128,128);
 cv.drawBitmap(resizedBitmap, 2, 2, null);// 设置ic_launcher的位置

 // save all clip
 cv.save(Canvas.ALL_SAVE_FLAG);// 保存
 // store
 cv.restore();// 存储

 return getRoundedCornerBitmap(newb);
 }

 /**
 * 图片圆角
 * @param bitmap
 * @return
 */
 public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) {
 Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
  bitmap.getHeight(), Config.ARGB_8888);
 Canvas canvas = new Canvas(output);
 final int color = 0xff424242;
 final Paint paint = new Paint();
 final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
 final RectF rectF = new RectF(rect);
 final float roundPx = 12;
 paint.setAntiAlias(true);
 canvas.drawARGB(0, 0, 0, 0);
 paint.setColor(color);
 canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
 paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
 canvas.drawBitmap(bitmap, rect, rect, paint);
 return output;

 }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android 高仿微信支付数字键盘功能

    现在很多app的支付.输入密码功能,都已经开始使用自定义数字键盘,不仅更加方便.其效果着实精致. 下面带着大家学习下,如何高仿微信的数字键盘,可以拿来直接用在自身的项目中. 先看下效果图: 1. 自定义布局 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

  • Android仿微信选择图片和拍照功能

    本文实例为大家分享了 Android微信选择图片的具体代码,和微信拍照功能,供大家参考,具体内容如下 1.Android6.0系统,对于权限的使用都是需要申请,选择图片和拍照需要申请Manifest.permission.CAMERA, Manifest.permission.READ_EXTERNAL_STORAGE这两个权限. if (ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) != PackageM

  • Android仿微信图片选择器

    很多项目要用到图片选择控件,每次都要写一大堆逻辑.于是基于图片选择组件(PhotoPicker)封装了一个控件PhotoUploadView.方便简易,一键集成,几句代码就可以添加类似微信的图片选择控件了.下面介绍一下该控件有些什么特点以及怎么使用.先看图: 效果如上图,点击加号弹出选择框,目前提供了两种形式,一个如图所见的PopupWindow,另一个是MaterialDialog,选择拍照或者从图库获取,从图库获取后就进入图二,选择完之后就图三或图四这里因为很多项目需要不一样,所以特别封装了

  • Android仿微信页面底部导航效果代码实现

    大家在参考本地代码的时候要根据需要适当的修改,里面有冗余代码小编没有删除.好了,废话不多说了,一切让代码说话吧! 关键代码如下所示: .java里面的主要代码 public class MainActivity extends BaseActivity implements TabChangeListener { private Fragment[] fragments; private FragZaiXianYuYue fragZaiXianYuYue; private FragDaoLuJi

  • Android仿微信图片点击全屏效果

    废话不多说,先看下效果: 先是微信的 再是模仿的 先说下实现原理,再一步步分析 这里总共有2个Activity一个就是主页,一个就是显示我们图片效果的页面,参数通过Intent传送,素材内容均来自网络,(感谢聪明的蘑菇) 图片都是Glide异步下的,下的,下的重要的事情说三次,然后就是用动画做放大操作然后显示出来了(并没有做下载原图的实现,反正也是一样 下载下来Set上去而且动画都不需要更简便). OK,我们来看分析下 obj,目录下分别创建了2个对象,一个用来使用来处理显示页面的图片尺寸信息以

  • Android开发Popwindow仿微信右上角下拉菜单实例代码

    先给大家看下效果图: MenuPopwindow: package com.cloudeye.android.cloudeye.view; import android.app.Activity; import android.content.Context; import android.graphics.drawable.ColorDrawable; import android.view.LayoutInflater; import android.view.View; import an

  • Android仿微信拍摄短视频

    近期做项目需要添加上传短视频功能,功能设置为类似于微信,点击开始拍摄,设置最长拍摄时间,经过研究最终实现了这个功能,下面就和大家分享一下,希望对你有帮助. 1.视频录制自定义控件: /** * 视频播放控件 */ public class MovieRecorderView extends LinearLayout implements OnErrorListener { private SurfaceView mSurfaceView; private SurfaceHolder mSurfa

  • Android仿微信清理内存图表动画(解决surfaceView屏幕闪烁问题)demo实例详解

    最近接了一个项目其中有功能要实现一个清理内存,要求和微信的效果一样.于是想到用surfaceView而不是继承view.下面小编给大家解析下实现思路. surfaceView是为了解决频繁绘制动画产生了闪烁,而采用了双缓冲机制,即A.B两个缓冲轮流显示在画布上,同时,使用不当,同样容易产生闪烁,这是由于A.B中有一个缓冲没有改变. 在我写这个view的时候就遇到了这个问题,研究了好久终于解决. 首先说一下思路: 微信清理缓存的动画是: 一个圆环不停的转动,同时中间有文字显示-->加载完成后,出现

  • Android仿微信发表说说实现拍照、多图上传功能

    本文实例为大家分享了Android仿微信发表说说.心情功能,供大家参考,具体内容如下 既能实现拍照,选图库,多图案上传的案例,目前好多App都有类似微信朋友圈的功能,能过发表说说等附带图片上传.下面的就是实现该功能的过程:大家还没有看过Android Retrofit 2.0框架上传图片解决方案这篇文章,在看今天的就很容易,接在本项目中用到了一个library:photopicker,封装了图片的选择功能,是否选相机,还有选中图片后可以查看图片的功能.  一. 首先:将photopicker到工

  • Android仿微信联系人字母排序效果

    本文实例为大家分享了Android联系人字母排序的具体代码,供大家参考,具体内容如下 实现思路:首先说下布局,整个是一个相对布局,最下面是一个listview,listview上面是一个自定义的view(右边显示字母),最上面是一个textview(屏幕中间的方块). 首先说一下右边自定义view,字母是画到view上面的,首先计算一下view的高度,然后除以存放字母数组的长的,得到每个字符的高度:每个字母的宽度都是一样的,所以这里直接设置30sp: listview显示的是108个梁山好汉的名

  • Android自定义仿微信PopupWindow效果

    给大家分享一个高仿微信的PopupWindow.就是微信的扫一扫那个功能窗口.下面有应用运行效果图.更加直观的展示了Demo的效果.源代码是通过两种方法实现的.大家可以下载源代码研究研究.集成到自己的项目中也是很方便的.希望对大家有用.先看一下 Demo运行效果 本Demo是高仿的微信以前的版本.并不是最新版本.如果想改成最新版本的可稍做改动就ok了 第一种方式 初始化组件 private void initView(){ //实例化标题栏按钮并设置监听 titleBtn = (ImageBut

  • Android自定义SwipeRefreshLayout高仿微信朋友圈下拉刷新

    上一篇文章里把SwipeRefreshLayout的原理简单过了一下,大致了解了其工作原理,不熟悉的可以去看一下:http://www.jb51.net/article/89310.htm 上一篇里最后提到,SwipeRefreshLayout的可定制性是比较差的,看源码会发现跟样式相关的几个类都是private的而且方法是写死的,只暴露出了几个颜色设置的方法.这样使得SwipeRefreshLayout的使用比较简单,主要就是设置一个监听器在onRefresh方法里完成刷新逻辑.讲道理Swip

随机推荐