大家好,欢迎来到IT知识分享网。
效果:
注意点:
1、图片里面中文显示,显示中文的时候笔者是使用读取字体文件的方式,这点要特别注意,笔者在这里使用的字体文件是simsun.ttf(宋体),csdn文档中没办法上传这个东西,你们可以去自己的电脑C:\Windows\Fonts位置寻找自己想要的字体
2、文字换行
步骤:
1、生成一张白板背景图
2、将文字和二维码利用Graphics2D画入到背景图里面
3、生成一张心的图片
文字换行参考地址:https://www.cnblogs.com/hi-gdl/p/10445566.html
代码:
/**
* 描述:创建空白背景图片
* @param path 图片存储路径
*/
public static String createImage(String path){
//创建一个图片缓冲区 BACKGROUND_WIDTH=600 BACKGROUND_HEIGHT=800
BufferedImage image = new BufferedImage(BACKGROUND_WIDTH, BACKGROUND_HEIGHT, BufferedImage.TYPE_INT_BGR);
//获取图片处理对象
Graphics graphics = image.getGraphics();
//填充背景色
graphics.setColor(Color.WHITE);
graphics.fillRect(1, 1, BACKGROUND_WIDTH - 1, BACKGROUND_HEIGHT - 1);
//设定边框颜色
graphics.setColor(Color.WHITE);
graphics.drawRect(0, 0, BACKGROUND_WIDTH - 1, BACKGROUND_HEIGHT - 1);
//输出文件
File file = new File(path,"background.png");
path = file.getPath();
try {
ImageIO.write(image, "PNG", file);
} catch (IOException e) {
e.printStackTrace();
}
//释放资源
graphics.dispose();
return path;
}
public static void main(String[] args) {
String backgroundPath = createImage("D:\\code");
System.out.println("背景图片路径:"+backgroundPath);
String qrCodePath = "D:\\code\\google.png";
String base64 = null;
try {
//设置图片大小
BufferedImage background = ImageIO.read(new File(backgroundPath));
BufferedImage qrCode = ImageIO.read(new File(qrCodePath));
Graphics2D g = background.createGraphics();
g.setColor(Color.BLACK);
//字体
ClassPathResource fontResource = new ClassPathResource("/simsun.ttf");
Font font = Font.createFont(Font.TRUETYPE_FONT, fontResource.getInputStream());
font = font.deriveFont(Font.BOLD, 20);
g.setFont(font);
String activityNameString = "活动名称:北上广深北上广深北上广深北上广深北上广深北上广深北上广深北上广深北上广深北上广深";
String activityTypeString = "活动类型:经济特区";
String activityDateString = "活动时间:2020-10-14";
//当活动名称过长的时候就需要进行换行
FontRenderContext frc = g.getFontRenderContext();
g.getFontRenderContext();
Rectangle2D stringBounds = font.getStringBounds(activityNameString, frc);
double fontWidth = stringBounds.getWidth();
List<String> line_list = Lists.newArrayList();
//这个地方的480是你自己要开始画的地方距离背景宽度大小,比如背景图片宽度600,在x为120地方开始画,相隔480
if (fontWidth > 480) {
int textWidth = 480;
double bs = fontWidth / textWidth;//文本长度是文本框长度的倍数
int lineCharCount = (int) Math.ceil(activityNameString.length() / bs);//每行大概字数
int beginIndex = 0;
while (beginIndex < activityNameString.length()) {
int endIndex = beginIndex + lineCharCount;
if (endIndex >= activityNameString.length()) {
endIndex = activityNameString.length();
}
String line_str = activityNameString.substring(beginIndex, endIndex);//截取长度
Rectangle2D tempStringBounds = font.getStringBounds(line_str, frc);
int tzcs = 0;//调整次数
int tzzs = 1;//调整字数,临时文本的字符串长度大于要求的文本宽度时,每次减少临时文本的字数,然后重新测量文本宽度
while (tempStringBounds.getWidth() > textWidth) {
line_str = line_str.substring(0, line_str.length() - tzzs);//每次向前 tzzs 个字符重新计算
tempStringBounds = font.getStringBounds(line_str, frc);
tzcs++;
}
line_list.add(line_str);
beginIndex = beginIndex + line_str.length();
for (int i = 0; i < line_list.size(); i++) {
String line_strs = line_list.get(i);
g.drawString(line_strs, 120, (i + 2) * 35);//35为每行的高度
}
}
} else {
g.drawString(activityNameString, 120, 90);
}
g.drawString(activityTypeString, 120, 150);
g.drawString(activityDateString, 120, 210);
//在背景图片上添加二维码图片
g.drawImage(qrCode, 100, 340, qrCode.getWidth(), qrCode.getHeight(), null);
g.dispose();
ImageIO.write(background, "png", new File("D:\\code", "download.png"));
//转成base64
//输出流
ByteArrayOutputStream stream = new ByteArrayOutputStream();
ImageIO.write(background, "png", stream);
//转换为base64
Base64.Encoder encoder1 = Base64.getEncoder();
base64 = "data:image/png;base64,"
+ encoder1.encodeToString(stream.toByteArray());
} catch (Exception e) {
e.printStackTrace();
}
}
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/24840.html