Create one image from various image files
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开发者_Python百科 goes to 150,0 and so on
Is the best approach to use Graphics.DrawImage?
Thanks
Quoted from here:
This will add an image to another:
using (Graphics grfx = Graphics.FromImage(image))
{
grfx.DrawImage(newImage, x, y)
}
精彩评论