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,206
  • 2
  • 20
  • 40
Code Hungry
  • 3,750
  • 22
  • 64
  • 92

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
  • 870
  • 2
  • 20
  • 53