我用DrawImage去拼图,可是出来的存在间隙,而且图片变得不清晰了,下面是代码,大侠帮我看看原因:
...
Bitmap bmpMap = new Bitmap(this.Width, this.Height);
Graphics gra = Graphics.FromImage(bmpMap);
for (int i = 0; i < m_Rows; i++)
{
      for (int j = 0; j < m_Cols; j++)
      {
           int top = i * m_BlockHeight;
           int left = j * m_BlockWidth;                                                
           gra.DrawImage(bmp, left, top);       
      }
}
this.Image = bmpMap;
this.Refresh();
...