這篇文章給大家介紹java中怎么生成圖片并進(jìn)行套打功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
按需策劃可以根據(jù)自己的需求進(jìn)行定制,網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)構(gòu)思過(guò)程中功能建設(shè)理應(yīng)排到主要部位公司網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)的運(yùn)用實(shí)際效果公司網(wǎng)站制作網(wǎng)站建立與制做的實(shí)際意義
具體內(nèi)容如下
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 = image.getGraphics(); graphics.setColor(Color.white); graphics.fillRect(0, 0, imageWidth, imageHeight); graphics.setColor(Color.black); graphics.setFont(new Font("宋體", Font.PLAIN, 70)); String address="山東省飛史蒂夫肯德基首付款艱苦奮斗就勝多負(fù)少的飛電風(fēng)扇"; //為控制字符串過(guò)長(zhǎng)換行 graphics.drawString(address.substring(0,13), 985,1416); graphics.drawString(address.substring(13), 985,1484); Calendar now = Calendar.getInstance(); //證書(shū)有效期為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"));//生成的圖片中插入另一張圖片 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){ }
關(guān)于java中怎么生成圖片并進(jìn)行套打功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。