3

I am having a background image and I want to append text on a specific area of an image using Java.Is that possible? I want to do this for batch.

Can any one suggest me, how can I do that?

Are there any tools where I can append text on images?

Vivek Kalkur
  • 2,200
  • 2
  • 21
  • 40
Code Hungry
  • 3,930
  • 22
  • 67
  • 95

2 Answers2

0

There is drawString() method in Graphics2D object. You can obtain Graphics from existing Image and then draw there your String.

Yegoshin Maxim
  • 872
  • 2
  • 21
  • 54