c# 中 我要对图片进行按一定角度旋转,我是这样写的
   TextureBrush MyBrush=new TextureBrush(tmpBmp);
  this.picPreview.Refresh();
   e.Graphics.TranslateTransform(iRotX,iRotY);
   MyBrush.RotateTransform(iAngle);
   e.Graphics.TranslateTransform(-iRotX,-iRotY);
  e.Graphics.FillRectangle(MyBrush,0,0,this.ClientRectangle.Width,this.ClientRectangle.Height);
因为 有的图片需要截取,所以我希望在此代码中能截取,希望高手能够指点一下 谢谢