0

I've to create a bunch of jpeg images which have the same template with just a few components that change depending on the user. I want to know what is the best software/language to use to make this?

For example: I have to generate a 2443x2443 jpeg. Only the name and profile description will change. These changes will be supplied by the user.

Newtt
  • 6,050
  • 13
  • 68
  • 106

1 Answers1

0

What language you use depends entirely on what you are trying to accomplish. If you are working on a website, then you might consider a language like php, and use some of the functions it provides like imagestring that turns a string into an image. If you are making a desktop application, then most of the popular languages will have image manipulation libraries that let you work with images.

Ryan
  • 712
  • 7
  • 21