91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# drawimage圖像如何旋轉

c#
小樊
81
2024-11-24 20:55:07
欄目: 編程語言

在C#中,要旋轉Image對象,可以使用RotateFlip方法。以下是一個示例,展示了如何在PictureBox控件中旋轉圖像:

using System;
using System.Drawing;
using System.Windows.Forms;

namespace RotateImageExample
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnRotate_Click(object sender, EventArgs e)
        {
            // 加載圖像
            Bitmap originalImage = new Bitmap("path/to/your/image.jpg");

            // 旋轉圖像
            Bitmap rotatedImage = RotateImage(originalImage, RotationAngle.Clockwise90);

            // 將旋轉后的圖像顯示在PictureBox中
            pictureBox1.Image = rotatedImage;
        }

        private Bitmap RotateImage(Bitmap src, RotationAngle rotationAngle)
        {
            int width = src.Width;
            int height = src.Height;
            Bitmap rotatedBitmap = new Bitmap(height, width);

            using (Graphics graphics = Graphics.FromImage(rotatedBitmap))
            {
                // 設置旋轉角度
                graphics.RotateTransform((float)rotationAngle);

                // 設置圖像的繪制位置
                PointF destinationPoint = new PointF(0, 0);

                // 繪制原始圖像
                graphics.DrawImage(src, destinationPoint);
            }

            return rotatedBitmap;
        }
    }
}

在這個示例中,我們創建了一個名為RotateImage的方法,該方法接受一個Bitmap對象和一個RotationAngle枚舉值作為參數。RotationAngle枚舉有以下三個值:

  • None:不旋轉圖像。
  • Clockwise90:順時針旋轉90度。
  • Counterclockwise90:逆時針旋轉90度。
  • Rotate180:旋轉180度。
  • Rotate270:旋轉270度。

btnRotate_Click方法中,我們加載了一個圖像,然后調用RotateImage方法將其旋轉,并將旋轉后的圖像顯示在PictureBox控件中。

0
漾濞| 明星| 双鸭山市| 淳化县| 扎鲁特旗| 抚顺市| 长春市| 闽侯县| 石狮市| 井陉县| 新乐市| 龙门县| 庆城县| 黔西| 淮南市| 扶沟县| 南川市| 永川市| 漾濞| 崇礼县| 新和县| 八宿县| 昌都县| 兴宁市| 高阳县| 独山县| 崇阳县| 右玉县| 宣威市| 绥中县| 保山市| 太湖县| 合山市| 太仆寺旗| 洪湖市| 彭阳县| 鹿邑县| 江川县| 湘西| 抚顺市| 唐山市|