二维码生成,二维码中嵌套图片,文字生成图片

package com.fh.util;

import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import javax.imageio.ImageIO;

import jp.sourceforge.qrcode.QRCodeDecoder;
import jp.sourceforge.qrcode.exception.DecodingFailedException;

import com.swetake.util.Qrcode;

/**
 * 二维码 创建人:FH 313596790QQ 创建时间:2015年4月10日
 *
 * @version
 */
public class TwoDimensionCode {

/**
     * 生成二维码(QRCode)图片
     *
     * @param content
     *            存储内容
     * @param imgPath
     *            图片路径
     */
    public static void encoderQRCode(String content, String imgPath) {
        encoderQRCode(content, imgPath, "png", 2);
    }

/**
     * 生成二维码(QRCode)图片
     *
     * @param content
     *            存储内容
     * @param output
     *            输出流
     */
    public static void encoderQRCode(String content, OutputStream output) {
        encoderQRCode(content, output, "png", 2);
    }

/**
     * 生成二维码(QRCode)图片
     *
     * @param content
     *            存储内容
     * @param imgPath
     *            图片路径
     * @param imgType
     *            图片类型
     */
    public static void encoderQRCode(String content, String imgPath,
            String imgType) {
        encoderQRCode(content, imgPath, imgType, 2);
    }

/**
     * 生成二维码(QRCode)图片
     *
     * @param content
     *            存储内容
     * @param output
     *            输出流
     * @param imgType
     *            图片类型
     */
    public static void encoderQRCode(String content, OutputStream output,
            String imgType) {
        encoderQRCode(content, output, imgType, 2);
    }

/**
     * 生成二维码(QRCode)图片
     *
     * @param content
     *            存储内容
     * @param imgPath
     *            图片路径
     * @param imgType
     *            图片类型
     * @param size
     *            二维码尺寸
     */
    public static void encoderQRCode(String content, String imgPath,
            String imgType, int size) {
        try {
            BufferedImage bufImg = qRCodeCommon(content, imgType, size);

File imgFile = new File(imgPath);
            // 生成二维码QRCode图片
            ImageIO.write(bufImg, imgType, imgFile);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

/**
     * 生成二维码(QRCode)图片
     *
     * @param content
     *            存储内容
     * @param output
     *            输出流
     * @param imgType
     *            图片类型
     * @param size
     *            二维码尺寸
     */
    public static void encoderQRCode(String content, OutputStream output,
            String imgType, int size) {
        try {
            BufferedImage bufImg = qRCodeCommon(content, imgType, size);
            // 生成二维码QRCode图片
            ImageIO.write(bufImg, imgType, output);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

/**
     * 生成二维码(QRCode)图片的公共方法
     *
     * @param content
     *            存储内容
     * @param imgType
     *            图片类型
     * @param size
     *            二维码尺寸
     * @return
     */
    private static BufferedImage qRCodeCommon(String content, String imgType,
            int size) {
        BufferedImage bufImg = null;
        size = 10;
        try {
            Qrcode qrcodeHandler = new Qrcode();
            // 设置二维码排错率,可选L(7%)、M(15%)、Q(25%)、H(30%),排错率越高可存储的信息越少,但对二维码清晰度的要求越小
            qrcodeHandler.setQrcodeErrorCorrect(‘M‘);
            qrcodeHandler.setQrcodeEncodeMode(‘B‘);
            // 设置设置二维码尺寸,取值范围1-40,值越大尺寸越大,可存储的信息越大
            qrcodeHandler.setQrcodeVersion(size);
            // 获得内容的字节数组,设置编码格式
            byte[] contentBytes = content.getBytes("utf-8");
            // 图片尺寸
            // int imgSize = 67 + 12 * (size - 1);
            int imgSize = 67 + 12 * (size - 1);

// System.out.println(imgSize);

bufImg = new BufferedImage(imgSize, imgSize,
                    BufferedImage.TYPE_INT_RGB);
            Graphics2D gs = bufImg.createGraphics();
            // 设置背景颜色
            gs.setBackground(Color.WHITE);
            gs.clearRect(0, 0, imgSize, imgSize);

// 设定图像颜色> BLACK
            gs.setColor(Color.BLACK);
            // 设置偏移量,不设置可能导致解析出错
            int pixoff = 2;
            // 输出内容> 二维码
            if (contentBytes.length > 0 && contentBytes.length < 800) {

boolean[][] codeOut = qrcodeHandler.calQrcode(contentBytes);
                for (int i = 0; i < codeOut.length; i++) {
                    for (int j = 0; j < codeOut.length; j++) {
                        if (codeOut[j][i]) {
                            gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3);
                        }
                    }
                }
            } else {
                throw new Exception("QRCode content bytes length = "
                        + contentBytes.length + " not in [0, 800].");
            }
            gs.dispose();
            bufImg.flush();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return bufImg;
    }

/**
     * 解析二维码(QRCode)
     *
     * @param imgPath
     *            图片路径
     * @return
     */
    public static String decoderQRCode(String imgPath) throws Exception {
        // QRCode 二维码图片的文件
        File imageFile = new File(imgPath);
        BufferedImage bufImg = null;
        String content = null;
        try {
            bufImg = ImageIO.read(imageFile);
            QRCodeDecoder decoder = new QRCodeDecoder();
            content = new String(decoder.decode(new TwoDimensionCodeImage(
                    bufImg)), "utf-8");
        } catch (IOException e) {
            // System.out.println("Error: " + e.getMessage());
            // e.printStackTrace();
        } catch (DecodingFailedException dfe) {
            // System.out.println("Error: " + dfe.getMessage());
            // dfe.printStackTrace();
        }
        return content;
    }

/**
     * 解析二维码(QRCode)
     *
     * @param input
     *            输入流
     * @return
     */
    public static String decoderQRCode(InputStream input) {
        BufferedImage bufImg = null;
        String content = null;
        try {
            bufImg = ImageIO.read(input);
            QRCodeDecoder decoder = new QRCodeDecoder();
            content = new String(decoder.decode(new TwoDimensionCodeImage(
                    bufImg)), "utf-8");
        } catch (IOException e) {
            System.out.println("Error: " + e.getMessage());
            e.printStackTrace();
        } catch (DecodingFailedException dfe) {
            System.out.println("Error: " + dfe.getMessage());
            dfe.printStackTrace();
        }
        return content;
    }

/**
     * 二维码绘制logo
     *
     * @param twodimensioncodeImg
     *            二维码图片文件
     * @param logoImg
     *            logo图片文件
     * @throws IOException
     * */
    public static BufferedImage encodeImgLogo(File twodimensioncodeImg,
            File logoImg) throws IOException {
        BufferedImage twodimensioncode = null;

try {
            if (!twodimensioncodeImg.isFile() || !logoImg.isFile()) {
                System.out.println("输入非图片");
                return null;
            }
            // 读取二维码图片
            twodimensioncode = ImageIO.read(twodimensioncodeImg);
            // 获取画笔
            Graphics2D g = twodimensioncode.createGraphics();
            // 读取logo图片
            BufferedImage logo = ImageIO.read(logoImg);
            // 设置二维码大小,太大,会覆盖二维码,此处20%
            int logoWidth = logo.getWidth(null) > twodimensioncode.getWidth() * 2 / 10 ? (twodimensioncode
                    .getWidth() * 2 / 10) : logo.getWidth(null);
            int logoHeight = logo.getHeight(null) > twodimensioncode
                    .getHeight() * 2 / 10 ? (twodimensioncode.getHeight() * 2 / 10)
                    : logo.getHeight(null);
            // 设置logo图片放置位置
            // 中心
            int x = (twodimensioncode.getWidth() - logoWidth) / 2;
            int y = (twodimensioncode.getHeight() - logoHeight) / 2;
            // 右下角,15为调整值
            // int x = twodimensioncode.getWidth() - logoWidth-15;
            // int y = twodimensioncode.getHeight() - logoHeight-15;
            // 开始合并绘制图片
            g.drawImage(logo, x, y, logoWidth, logoHeight, null);
            g.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15);
            // logo边框大小
            g.setStroke(new BasicStroke(2));
            // logo边框颜色
            g.setColor(Color.WHITE);
            g.drawRect(x, y, logoWidth, logoHeight);
            g.dispose();
            logo.flush();
            twodimensioncode.flush();
        } catch (Exception e) {
            System.out.println("二维码绘制logo失败");
        }
        ImageIO.write(twodimensioncode, "png", twodimensioncodeImg);// 输出png图片
        return twodimensioncode;
    }

/**
     * 二维码输出到文件
     *
     * @param twodimensioncodeImg
     *            二维码图片文件
     * @param logoImg
     *            logo图片文件
     * @param format
     *            图片格式
     * @param file
     *            输出文件
     * @throws IOException
     * */
    public static void writeToFile(File twodimensioncodeImg, File logoImg,
            String format, File file) throws IOException {
        BufferedImage image = encodeImgLogo(twodimensioncodeImg, logoImg);
        try {
            ImageIO.write(image, format, file);
        } catch (IOException e) {
            System.out.println("二维码写入文件失败" + e.getMessage());
        }
    }

/**
     * 二维码流式输出
     *
     * @param twodimensioncodeImg
     *            二维码图片文件
     * @param logoImg
     *            logo图片文件
     * @param format
     *            图片格式
     * @param stream
     *            输出流
     * @throws IOException
     * */
    public static void writeToStream(File twodimensioncodeImg, File logoImg,
            String format, OutputStream stream) throws IOException {
        BufferedImage image = encodeImgLogo(twodimensioncodeImg, logoImg);
        try {
            ImageIO.write(image, format, stream);
        } catch (IOException e) {
            System.out.println("二维码写入流失败" + e.getMessage());
        }
    }

public static void main(String[] args) {
       //在这测试
    }
}

package com.fh.util;

import java.awt.Color;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;
import java.io.File;

import javax.imageio.ImageIO;

public class FontImage {
    public static void main(String[] args) throws Exception {
        createImage("102桌", new Font("宋体", Font.BOLD, 14), new File("g:/a.png"));
        createImage("102桌", new Font("黑体", Font.BOLD, 14),new File("g:/a1.png"));
        createImage("102桌", new Font("黑体", Font.PLAIN, 14), new File("g:/a2.png"));
    }

// 根据str,font的样式以及输出文件目录
    public static void createImage(String str, Font font, File outFile)
            throws Exception {
        int width = 40;
        int height = 40;
        // 创建图片
        BufferedImage image = new BufferedImage(width, height,
                BufferedImage.TYPE_INT_BGR);
        Graphics g = image.getGraphics();
        g.setClip(0, 0, width, height);
        g.setColor(Color.white);
        g.fillRect(0, 0, width, height);// 先用黑色填充整张图片,也就是背景
        g.setColor(Color.red);// 在换成黑色
        g.setFont(font);// 设置画笔字体
        /** 用于获得垂直居中y */
        Rectangle clip = g.getClipBounds();
        FontMetrics fm = g.getFontMetrics(font);
        int ascent = fm.getAscent();
        int descent = fm.getDescent();
        int y = (clip.height - (ascent + descent)) / 2 + ascent;
        for (int i = 0; i < 6; i++) {// 256 340 0 680
            g.drawString(str, i * 680, y);// 画出字符串
        }
        g.dispose();
        ImageIO.write(image, "png", outFile);// 输出png图片
    }
}

时间: 2024-10-11 11:06:13

二维码生成,二维码中嵌套图片,文字生成图片的相关文章

jquery-qrcode客户端二维码生成类库扩展--融入自定义Logo图片

年后换了部门,现在主要的职责就是在网上卖精油,似乎这个就是传说中的网络营销. 跟着公司的MM们也了解不了少关于网络营销的知识,间接的了解到马云和刘强东都是些怎样龌龊的人,尽管之前也这样认为. 淘宝就不多说了,全球最大的中文假货销售平台(尽管淘宝没有打出全球中文等字样,可是其必须当之无愧).百度,当当等厚颜无耻之徒的明智之举就在于此,老外做的再大也很少会有直接支持中文的,因此他们都会在其名称前增加:“全球最大的中文”等字样,为自己镶金. 之前还一直比较力挺京东的,认为其根本自营根本不会销售假货,所

iOS中 扫描二维码/生成二维码详解 韩俊强的博客

最近大家总是问我有没有关于二维码的demo,为了满足大家的需求,特此研究了一番,希望能帮到大家! 每日更新关注:http://weibo.com/hanjunqiang  新浪微博 指示根视图: self.window.rootViewController = [[UINavigationController alloc]initWithRootViewController:[SecondViewController new]]; 每日更新关注:http://weibo.com/hanjunqi

HTML5实现扫描识别二维码/生成二维码

扫描识别二维码 思路: 1. 操作摄像头,获取图片.HTML5 WEBRTC的navigator.getUserMedia方法去实时获取摄像头资源. 2. 利用canvas使用相关算法分析图片识别图片得出结果,可用jquery.qrcode分析二维码 .(技术点:getImageData) 局限性: 移动平台支持getUserMedia/Stream API的浏览器比较少,支持列表http://caniuse.com/#feat=stream (目前没发现有IOS是支持的) 代码实现: 感谢gi

Android 开发中使用到二维码生成和解析

二维码生成 二维码解析 在项目的开发中, 使用二维码作为数据传递 交换 已经是常态了! 在这我也讲讲自己在项目开发中使用到的二维码. 生成二维码的开发流程 1 应用google 给我们提供的zxing.jar (建议官网下载) 2 使用zxing.jar 的MultiFormatWriter 类 生成一张二维码图片 核心代码块 /** * 方法说明:生成无图片二维码 */ @SuppressWarnings("unused") private Bitmap createTwoCode(

iOS中的原生框架生成二维码

一.二维码的生成 从iOS7开始集成了二维码的生成和读取功能 此前被广泛使用的ZBarSDK 目前不支持64位处理器,除此之外还有ZXingSDK也可以生成二维码 生成二维码的步骤 导入CoreImage框架 通过滤镜CIFilter生成二维码 二维码的内容(传统的条形码只能放数字) 纯文本 名片 URL(可直接跳转网页) 二维码生成的具体代码 1 - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)eve

通过jquery-qrcode在线生成二维码

随着移动互联网的发展,二维码现在应用得越来越广泛了,随手扫扫就可以浏览网站.加个好友什么的,比起手工输入真的是方便太多了. 前期做了一个综合测评系统,考虑逐步实现移动化,一长串的IP地址用户输入也不方便,借助二维码的话,用户拿起手机扫扫就可以直接进入系统. 基于这个应用场景,就上网研究下了网站二维码的实现方式,归纳起来有以下两种: 1.借助一些二维码生成网站或者二维码生成器生成二维码图片,然后挂在网站上,如码云 QR-Code (二维码) 在线生成器 优点:开发成本为零,能够快速实现多样化的二维

PHP二维码生成

原文链接:http://www.qqdeveloper.com/detail/14/1.html 代码下载地址:链接:http://pan.baidu.com/s/1dFgqiaP 密码:lex5 材料下载地址:参考原文链接 下面为大致代码讲解: 一.PHP实现基本的二维码 <?php // 引入qrcode类库文件,并实例化 require "./phpqrcode/qrlib.php"; $qrcode = new QRcode(); $qrcode::png("h

前端生成二维码

最近在做一个移动端项目,想实现点击按钮生成一个分享的二维码. 而项目一开始就是基于jquery2.0开发的,所以第一开始就JQ的插件,搜到jquery.qrcode.js,它支持以二种方式生成二维码,在支持canvas的现代浏览器下使用canvas来生成分享二维码, 在IE低版本等很搓的浏览器下使用table生成二维码图片,使用说明如下: 1.首先在页面中加入jquery库文件和qrcode插件. <script type="text/javascript" src="

js生成二维码以及点击下载二维码

js生成二维码 jquery.qrcode.js可以快速使用页面生成二维码.但改项目有两个小问题:1.不支持中文:2.不支持二维码中间生成图片. 支持中文的jquery-qrcode jquery.qrcode.js默认不支持中文.这跟js的机制有关系,jquery-qrcode这个库是采用 charCodeAt()这个方式进行编码转换的, 而这个方法默认会获取它的 Unicode 编码,一般的解码器都是采用UTF-8, ISO-8859-1等方式,英文是没有问题,如果是中文,一般情况下Unic