用C#编写图片如何旋转

用C#编写图片如何旋转
2025-04-04 03:44:15
推荐回答(4个)
回答1:

/*任意角度旋转,但图片本生并不旋转,显示时候是旋转*/
int Angle=30;//Angle为旋转的角度
Graphics g = picturebox1.CreateGraphics();

TextureBrush mybrush = new TextureBrush(SrcBmp);//SrcBmp为原图
mybrush.RotateTransform(Angle);//旋转
g.FillRectangle(mybrush, 0, 0,Picturebox1.Width, picturebox1.Height);
/*旋转90,180,主图片本生旋转,但只能旋转90的倍数*/
Bitmap bmp=new Bitmap(filepath);
bmp.RotateFlip(RotateFlipType.Rotate90FlipNone);

回答2:

public static Bitmap KiRotate(Bitmap img)
{
try
{
img.RotateFlip(RotateFlipType.Rotate90FlipNone);
return img;
}
catch
{
return null;
}
}

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

回答3:

这个在GDI+中有专门的函数的哈,很简单的了

回答4:

2楼回答的精辟