java生成图片进行套打功能

网友投稿 464 2023-01-24


java生成图片进行套打功能

本文实例为大家分享了java生成图片进行套打的具体代码,供大家参考,具体内容如下

import java.awt.Color;

import java.awt.Font;

import java.awt.Graphics;

import java.awt.image.BufferedImage;

import java.io.File;

import java.util.Calendar;

import javax.imageio.ImageIO;

import org.junit.Test;

public class imgecreate{

@Test

public void graphicsGeneration() {

try {

int imageWidth = 3507;// 图片的宽度

int imageHeight = 2480;// 图片的高度

BufferedImage image = new BufferedImage(imageWidth, imageHeight,

BufferedImage.TYPE_INT_RGB);

Graphics graphics = imydkdCpage.getGraphics();

graphics.setColor(Color.white);

graphics.fillRect(0, 0, imageWidth, imageHeight);

graphics.setColor(ColydkdCpor.black);

graphics.setFont(new Font("宋体", Font.PLAIN, 70));

String address="山东省飞史蒂夫肯德基首付款艰苦奋斗就胜多负少的飞电风扇";

//为控制字符串过长换行

graphics.drawString(address.substring(0,13), 985,1416);

graphics.drawString(address.substring(13), 985,1484);

Calendar now = Calendar.getInstance();

//证书有效期为3年,所以截止日减去1天

now.set(Calendar.DATE, now.get(Calendar.DATE)-1);

now.add(Calendar.YEAR, 3);//

BufferedImage small = ImageIO.read(new File("D://t.jpg"));//生成的图片中插入另一张图http://片

graphics.drawImage(small, 2524, 943, 385,385, null);

graphics.dispose();

createImage("D://test1.jpg", image);

}catch(Exception e) {

e.printStackTrace();

}

}

private static void createImage(String fileLocation, BufferedImage image) {

try {

ImageIO.write(image, "jpeg" , new File(fileLocation));

image.flush();

} catch (Exception e) {

e.printStackTrace();

}

}

public static void main(String[] args){

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SocketIo+SpringMvc实现文件的上传下载功能
下一篇:为何要共享文件系统(共享文件是怎么实现的)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~