Bitmap   mybit=new   Bitmap(100,100);//局部大小 
Graphics   g=Graphics.FromImage(mybit); 
g.DrawImage(oldbit/*原图*/
        new   Rectangle(new   Point(0,0),new   Size(100,100)),//目标位置 
        new   Rectangle(new   Point(startX,startY),new   Size(100,100)),//原图位置 
        GraphicsUnit.Pixel); 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2022-01-19
  • 2021-08-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
  • 2022-12-23
相关资源
相似解决方案