• Android使用Zxing库生成PDF417扫描后多一个字符A


    关于zxing库,用的是两天前发布的3.5.1版本。

    在Android配置文件build.gradle(app)中直接implementation的zxing.core。

    implementation 'com.google.zxing:core:3.5.1'
    
    • 1

    在网上找到个代码,可以创建PDF417码制的二维码。

    public static Bitmap createPdf417(String text, int size) {
        try {
            Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();
            hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
           // hints.put(EncodeHintType.ERROR_CORRECTION,"2");
            hints.put(EncodeHintType.MARGIN, 1);
    
            BitMatrix bitMatrix = new PDF417Writer().encode(text,
                    BarcodeFormat.PDF_417, size, size, hints);
           // int[] pixels = new int[size * size];
            int bitWidth = bitMatrix.getWidth();
            int bitHeight = bitMatrix.getHeight();
    
            int[] pixels = new int[bitWidth * bitHeight];
    
            //遍历bitmatrix,为像素矩阵按一行行(横列)设置像素颜色。
            for (int y = 0; y < bitHeight; y++) {//遍历一行一行像素
                for (int x = 0; x < bitWidth; x++) {
                    if (bitMatrix.get(x, y)) {
                        pixels[y * bitWidth + x] = 0xff000000;
                    } else {
                        pixels[y * bitWidth + x] = 0xffffffff;
                    }
                }
            }
    
            Bitmap bitmap = Bitmap.createBitmap(bitWidth, bitHeight,
                    Bitmap.Config.ARGB_8888);
            bitmap.setPixels(pixels, 0, bitWidth, 0, 0, bitWidth, bitHeight);
            return bitmap;
        } catch (WriterException e) {
            e.printStackTrace();
            return null;
        }
        //return null;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36

    使用:自己的类.createPdf417(String text, int size)
    text为二维码的内容,size为大小。

    直接copy,然后显示的码也挺漂亮。但是一扫就不对劲了前面总是有个A

    用了pdf417的办法,压缩,紧凑,不失真–都不行。

    然后就翻墙上github上看了一下

    发现是个老bug老bug,具体的原因就是在增加hints的时候加上了UTF-8的标准。但是zxing库这个默认的标准是iso_8859_1。
    而且追了下发现是先是iso然后又转成了UTF-8,所以出现了BUG。但是如果不加utf-8的话,就直接是iso标准,就不会有前面是A的方法了。
    不过如果要求是utf-8那还是蛮麻烦的。

    更改后的代码,其实就是关了hints的utf-8

    public static Bitmap createPdf417(String text, int size) {
        try {
            Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();
             // hints.put(EncodeHintType.ERROR_CORRECTION,"2");
            hints.put(EncodeHintType.MARGIN, 1);
    
            BitMatrix bitMatrix = new PDF417Writer().encode(text,
                    BarcodeFormat.PDF_417, size, size, hints);
           // int[] pixels = new int[size * size];
            int bitWidth = bitMatrix.getWidth();
            int bitHeight = bitMatrix.getHeight();
    
            int[] pixels = new int[bitWidth * bitHeight];
    
            //遍历bitmatrix,为像素矩阵按一行行(横列)设置像素颜色。
            for (int y = 0; y < bitHeight; y++) {//遍历一行一行像素
                for (int x = 0; x < bitWidth; x++) {
                    if (bitMatrix.get(x, y)) {
                        pixels[y * bitWidth + x] = 0xff000000;
                    } else {
                        pixels[y * bitWidth + x] = 0xffffffff;
                    }
                }
            }
    
            Bitmap bitmap = Bitmap.createBitmap(bitWidth, bitHeight,
                    Bitmap.Config.ARGB_8888);
            bitmap.setPixels(pixels, 0, bitWidth, 0, 0, bitWidth, bitHeight);
            return bitmap;
        } catch (WriterException e) {
            e.printStackTrace();
            return null;
        }
        //return null;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    追了好久的源码,也没有找到到底那里转换错了。时间紧迫,就先这样改了。

  • 相关阅读:
    Javaweb之javascript的详细解析
    主动信息收集
    高新为何要提前规划?
    【Chain of Resposibility】C++设计模式——职责链
    性能优化-卡牌项目渲染优化
    七、安卓手机环境检测软件分享
    解决 Android 分享到小程序 封面显示不全
    show服务器软硬件infos
    盘点:专业OKR管理工具有哪些?
    云计算基础知识
  • 原文地址:https://blog.csdn.net/v_3483608762/article/details/127693428