码迷,mamicode.com
首页 > 其他好文 > 详细

简单图片加文字

时间:2018-05-15 13:18:20      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:简单图   jpeg   hello   set   pre   main   aws   setfont   resource   

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);

简单图片加文字

标签:简单图   jpeg   hello   set   pre   main   aws   setfont   resource   

原文地址:https://www.cnblogs.com/shanshen/p/9040416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!