学习中
import com.swetake.util.Qrcode;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
public class CreateQRCode {
public static void main(String[] args) throws IOException {
int width = 67+12*(7-1); //图片宽度
int height = 67+12*(7-1); //图片高度
int logowidth = 40;
int logoheight = 40;
int x1 = (width-logowidth)/2;
int y1 = (height-logoheight)/2;
String format = "png"; //图片格式
String qrData = "https://www.baidu.com"; //图片内容
String desc = "二维码"; //二维码下面的文字描述
int pixoff = 2; //偏移量
int whiteWidth = 0; //白边
BufferedImage bufferedImage = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB); //创造画笔
Graphics2D gs = bufferedImage.createGraphics();
gs.setBackground(Color.WHITE); // 设置背景色为白色
gs.setColor(Color.black); // 设置画笔颜色
gs.clearRect(0,0,width,height); 清除画板内容
Qrcode x= new Qrcode();
x.setQrcodeErrorCorrect('M'); //纠错等级
x.setQrcodeEncodeMode('B'); //N代表数字,A代表a-Z,B代表其他
x.setQrcodeVersion(7); //版本
byte[] d =qrData.getBytes("utf-8");
if (d.length>0 && d.length <120){
boolean[][] s = x.calQrcode(d);
for (int i=0;i<s.length;i++){
for (int j=0;j<s.length;j++){
if (s[j][i]) {
gs.fillRect(j*3+pixoff,i*3+pixoff,3,3);
}
}
}
}
//插入图片
Image img = ImageIO.read(new File("E:/学习资料/JAVA实验/Java生成二维码/wechat7.jpg"));
gs.drawImage(img,x1,y1,logowidth,logoheight,null);
//二维码下面的文字说明
Font font = new Font("黑体", Font.BOLD, 12); //字体,字型,字号
int fontHeight = gs.getFontMetrics(font).getHeight(); //得到字体的高度
//计算需要多少行
int lineNum = 1; //行数
int currentLineLen = 0;
for(int i=0;i<desc.length();i++){
char c = desc.charAt(i); //charAt() 方法可返回指定位置的字符
int charWidth = gs.getFontMetrics(font).charWidth(c);
//循环文字得到文字区域的行数
if(currentLineLen+charWidth>width){ //当前行宽度+文字长度>宽度
lineNum++;
currentLineLen = 0;
continue;
}
currentLineLen += charWidth;
}
int totalFontHeight = fontHeight*lineNum; //得到文字区域的高度
int wordTopMargin = 4; //文字高度偏移
//创建将文字高度计算到其中的图片
BufferedImage bm1 = new BufferedImage(width, height+totalFontHeight+wordTopMargin-whiteWidth, BufferedImage.TYPE_INT_RGB);
Graphics g1 = bm1.getGraphics();
g1.setColor(Color.WHITE);
g1.fillRect(0, height, width, totalFontHeight+wordTopMargin-whiteWidth); //将文字部分的背景填充成白色
g1.setColor(Color.black);
g1.setFont(font);
g1.drawImage(bufferedImage, 0, 0, null); //将创建好的二维码从起点(0,0)开始画在图中
int currentLineIndex = 0;
//判断是否只有一行,只有一行就居中显示
currentLineLen = lineNum-1==currentLineIndex?(width-gs.getFontMetrics(font).stringWidth(desc))/2:0;
int baseLo = g1.getFontMetrics().getAscent(); //getAscent()返回某字体的基线(baseline)到该字体中大多数字符的升部(ascender)之间的距离
for(int i=0;i<desc.length();i++){
String c = desc.substring(i, i+1); //返回的子串包括 i 处的字符,但不包括 i+1 处的字符
int charWidth = gs.getFontMetrics(font).stringWidth(c);
//判断是否需要换行
if(currentLineLen+charWidth>width){
currentLineIndex++;
//判断是否是最后一行 最后一行居中显示
currentLineLen = lineNum-1==currentLineIndex?(width-gs.getFontMetrics(font).stringWidth(desc.substring(i)))/2:0;
g1.drawString(c, currentLineLen + whiteWidth, height+baseLo+fontHeight*(currentLineIndex)+wordTopMargin);//将单个文字画到对应位置
currentLineLen = charWidth;
continue;
}
g1.drawString(c, currentLineLen+whiteWidth, height+baseLo+fontHeight*(currentLineIndex) + wordTopMargin);
currentLineLen += charWidth;
}
g1.dispose();
bufferedImage = bm1;
gs.dispose();
bufferedImage.flush();
ImageIO.write(bufferedImage,format,new File("E:/学习资料/JAVA实验/Java生成二维码/qrcode.png"));
}
}