1. 程式人生 > >簡單圖片加文字

簡單圖片加文字

PE buffere copy image 簡單圖 圖片 wstring string AI

File file =new File("E:\\IDEA\\scripttest\\src\\main\\resources\\timg.jpg");
BufferedImage image = ImageIO.read(file);
Graphics graphics =image.getGraphics();
graphics.setFont(new Font("",Font.BOLD,250));
graphics.setColor(Color.red);
graphics.drawString("hello world!",300,300);
File file2 =new File("copy.jpg");
ImageIO.write(image,"JPEG",file2);

簡單圖片加文字