Image img = this.pictureBox1.Image;
                img.RotateFlip(RotateFlipType.Rotate90FlipNone);
                this.pictureBox1.Image = img;            

顺时针旋转90度 RotateFlipType.Rotate90FlipNone
逆时针旋转90度 RotateFlipType.Rotate270FlipNone
水平翻转 RotateFlipType.Rotate180FlipY
垂直翻转 RotateFlipType.Rotate180FlipX

相关文章:

  • 2021-07-30
  • 2022-12-23
  • 2021-09-15
  • 2021-07-08
  • 2021-12-10
  • 2022-12-23
  • 2022-01-07
  • 2021-06-07
猜你喜欢
  • 2021-07-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案