這篇文章給大家介紹java中怎么生成圖片并進行套打功能,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
創(chuàng)新互聯(lián)專注于農(nóng)安企業(yè)網(wǎng)站建設(shè),自適應(yīng)網(wǎng)站建設(shè),購物商城網(wǎng)站建設(shè)。農(nóng)安網(wǎng)站建設(shè)公司,為農(nóng)安等地區(qū)提供建站服務(wù)。全流程按需制作網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)具體內(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="山東省飛史蒂夫肯德基首付款艱苦奮斗就勝多負少的飛電風扇"; //為控制字符串過長換行 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"));//生成的圖片中插入另一張圖片 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中怎么生成圖片并進行套打功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。