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
  • 38,814
  • 81
  • 233
  • 382

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,639
  • 9
  • 97
  • 171