Answer the question
In order to leave comments, you need to log in
Adding text on photo in java?
You need to add a caption to the photo. I run the code
InputStream ismain = ManagerService.class.getClassLoader().getResourceAsStream("img/Chrysanthemum.jpg");
BufferedImage read = ImageIO.read(ismain);
Graphics g = read.getGraphics();
g.setFont(timesRoman1);
g.setColor(Color.WHITE);
g.drawString("Hellow world ",7, 55);
g.dispose();
ImageIO.write(read, "jpg", new File("image.jpg"));
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question