• 大小: 1.47KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  

资源简介

c# 图片旋转任意角度的函数

资源截图

代码片段和文件信息

#region 图片旋转任意角度的函数
/// 
/// 以逆时针为方向对图像进行旋转
/// 

/// 位图流
/// 旋转角度[0360](前台给的)
/// 
public Bitmap Rotate(Bitmap b int angle)
{
angle = angle % 360; //弧度转换
double radian = angle * Math.PI / 180.0;
double cos = Math.Cos(radian);
double sin = Math.Sin(radian);
//原图的宽和高
int w = b.Width;
int h = b.Height;
int W = (int)(Math.Max(Math.Abs(w * cos - h * sin) Math.Abs(w * cos + h * sin)));
int H = (int)(Math.Max(Math.Abs(w * sin - h * cos) Math.Abs(w * sin + h * cos)));
//目标位图
Bitmap dsImage = new Bitmap(W H);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(dsImage);
g.Int

评论

共有 条评论