package com.yin.text; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; /** * 在圖片上編輯文本內容 * @version 2018-2-27 上午11:12:09 * */ public class Picture1 { private Font font = new Font("宋體", Font.PLAIN, 12); // 添加字體的屬性設置 private Graphics2D g = null; private int fontsize = 0; private int x = 0; private int y = 0; /** * 導入本地圖片到緩沖區 */ public BufferedImage loadImageLocal(String imgName) { try { return ImageIO.read(new File(imgName)); } catch (IOException e) { System.out.println(e.getMessage()); } return null; } /** * 生成新圖片到本地 */ public void writeImageLocal(String newImage, BufferedImage img) { if (newImage != null && img != null) { try { File outputfile = new File(newImage); ImageIO.write(img, "jpg", outputfile); } catch (IOException e) { System.out.println(e.getMessage()); } } } /** * 修改圖片,返回修改后的圖片緩沖區(只輸出一行文本) */ public BufferedImage modifyImage(BufferedImage img, Object content, int x, int y) { try { int w = img.getWidth(); int h = img.getHeight(); g = img.createGraphics(); g.setBackground(Color.RED);//設置背景顏色 g.setColor(Color.BLUE);//設置字體顏色 if (this.font != null) g.setFont(this.font); // 驗證輸出位置的縱坐標和橫坐標 if (x >= h || y >= w) { this.x = h - this.fontsize + 2; this.y = w; } else { this.x = x; this.y = y; } if (content != null) { g.drawString(content.toString(), this.x, this.y); } g.dispose(); } catch (Exception e) { System.out.println(e.getMessage()); } return img; } public static void main(String[] args) { Picture1 tt = new Picture1(); BufferedImage d = tt.loadImageLocal("C:/1.jpg"); //往圖片上編輯內容 tt.writeImageLocal("C:/new1.jpg", tt.modifyImage(d, "這是文本內容啦啦啦啦啦", 0, 200)); System.out.println("success"); } }
