简单图片加文字
Posted 山神笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单图片加文字相关的知识,希望对你有一定的参考价值。
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);
以上是关于简单图片加文字的主要内容,如果未能解决你的问题,请参考以下文章