将位图从文件复制到C#控制台应用程序中的另一个位图区域

时间:2014-04-21 15:20:58

标签: c# bitmap copy

我在控制台应用程序中编写游戏代码。我需要通过将源文件放在目标文件的不同位置,从多个位图文件(源文件)创建一个位图文件(目标文件)。我需要的是如下方法:

void Copy(Bitmap targetfile, Bitmap sourcefile, int position_x, int position_y)
{
   //Copy sourcefile into the (position_x, position_y) of the targetfile.
}

我搜索但没有运气。关于如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:1)

您可以使用Graphics中的System.Drawing课程。

using System.Drawing;

// Then, in your class

public static void Copy (Bitmap target, Bitmap source, int x, int y)
{
    Graphics g=Graphics.FromImage(target);
    g.DrawImage(source, x, y);
}
public static void Main (string[] args)
{
    Bitmap target=(Bitmap)Bitmap.FromFile("bg.jpg");
    Bitmap source=(Bitmap)Bitmap.FromFile("fg.png");
    Copy (target, source, 100,50);
    Copy (target, source, 200,300);
    Copy (target, source, 500,450);
    target.Save("newBG.jpg");
}