中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
武鸣县| 怀安县| 上蔡县| 五华县| 安新县| 碌曲县| 延川县| 宁蒗| 布尔津县| 宣武区| 久治县| 东港市| 手游| 贵阳市| 河南省| 逊克县| 玛多县| 泗水县| 塔城市| 阿鲁科尔沁旗| 锦屏县| 南京市| 福泉市| 林芝县| 阿荣旗| 石城县| 云浮市| 新丰县| 信丰县| 樟树市| 平泉县| 堆龙德庆县| 阜平县| 锦屏县| 大连市| 屏东市| 嘉禾县| 芜湖县| 长武县| 漳州市| 鄯善县|