谷歌二维码生成

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/LONG729564606/article/details/77852641

相关jar包下载

private static final int BLACK = 0xff000000;
    private static final int WHITE = 0xFFFFFFFF;

    public static void genGR(String website, HttpServletResponse response) throws WriterException, IOException {
        int width = 300;
        int height = 300;
        String format = "jpg";
        Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();
        //Hashtable hints = new Hashtable();
        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
        BitMatrix bm = new MultiFormatWriter().encode(website, BarcodeFormat.QR_CODE, width, height, hints);

        BufferedImage image = toImage(bm);
        ImageIO.write(image, format, response.getOutputStream());   //把二维码写到response的输出流
    }

    private static BufferedImage toImage(BitMatrix bm) {
        int width = bm.getWidth();
        int height = bm.getHeight();
        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        for(int x = 0;x < width; x++){
            for(int y = 0; y < height; y++ ){
                image.setRGB(x, y, bm.get(x, y) ? BLACK : WHITE);
            }
        }
        return image;
    }

猜你喜欢

转载自blog.csdn.net/LONG729564606/article/details/77852641
今日推荐