开发者

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)
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜