在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
控件中。