标签: c# .net image graphics drawing
我需要从各种其他图像文件中组成图像,然后保存生成的图像。因此,例如图像1需要定位在0和0的坐标,然后下一个文件转到150,0,依此类推
使用Graphics.DrawImage的最佳方法是什么?
由于
答案 0 :(得分:0)
引自here:
这会将图像添加到另一个图像:
using (Graphics grfx = Graphics.FromImage(image)) { grfx.DrawImage(newImage, x, y) }