1

I need to make up an image from various other image files and then save that generated image. So for example image 1 needs to be positioned at x and y co-ordinate of 0,0 then the next file goes to 150,0 and so on

Is the best approach to use Graphics.DrawImage?

Thanks

Jon
  • 37,339
  • 77
  • 225
  • 374

1 Answers1

0

Quoted from here:

This will add an image to another:

using (Graphics grfx = Graphics.FromImage(image))
{
grfx.DrawImage(newImage, x, y)
}
Community
  • 1
  • 1
Kamyar
  • 18,406
  • 9
  • 94
  • 169