`
FariyTale
  • 浏览: 193814 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android生成二维码

阅读更多

将一段字符变成二维码,通过调用第三方包zxing来实现。没什么可说的,直接上代码:

public Bitmap Create2DCode(String str) throws WriterException {     
        //生成二维矩阵,编码时指定大小,不要生成了图片以后再进行缩放,这样会模糊导致识别失败     
        BitMatrix matrix = new MultiFormatWriter().encode(str,BarcodeFormat.QR_CODE, 400, 400);     
        int width = matrix.getWidth();     
        int height = matrix.getHeight();     
        //二维矩阵转为一维像素数组,也就是一直横着排了     
        int[] pixels = new int[width * height];     
        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;     
    }    

 最后一点需要注意,因为生成的二维码是黑色的,所有尽量把背景色设置成浅色,否则图片显示不明显。(p.s. 我运行程序是用的背景色是黑的,神马东西都木有,害我以为是程序出了问题 (+﹏+)~狂晕)

分享到:
评论
1 楼 somefuture 2012-08-22  
生产的bitmap怎么用呢?怎么变成图片呢?

相关推荐

Global site tag (gtag.js) - Google Analytics