资源简介
C#实现将某张照片进行旋转,目前我添加了可以浏览图片,旋转18度和26度,若想旋转其他度数,直接复制button中函数体,修改度数即可。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private const string IMAGEFILE = “G:\\RFID\\1.JPG“;
private static int MyAngle = 0; //旋转角度[-360360]
private void Page_Load(object sender EventArgs e)
{
Image img;
FileStream fs;
fs = new FileStream(IMAGEFILE FileMode.Open FileAccess.Read);
img = Bitmap.FromStream(fs);
fs.Close();
pictureBox1.Image = img;
}
private void button1_Click(object sender EventArgs e)
{
MyAngle = 0;
//MyAngle += 90;
//if (MyAngle > 360) MyAngle = 90;
pictureBox1.Image = RotateImg(GetSourceImg(IMAGEFILE) MyAngle);
}
private void button2_Click(object sender EventArgs e)
{
MyAngle = 90;
//MyAngle += -90;
//if (MyAngle < -360) MyAngle = -90;
//pictureBox1.Image = RotateImg(Bitmap.FromFile(IMAGEFILE) MyAngle);
pictureBox1.Image = RotateImg(IMAGEFILE MyAngle);
}
public Image RotateImg(Image 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.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Bilinear;
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
//计算偏移量
Point Offset = new Point((W - w) / 2 (H - h) / 2);
//构造图像显示区域:让图像的中心与窗口的中心点一致
Rectangle rect = new Rectangle(Offset.X Offset.Y w h);
Point center = new Point(rect.X + rect.Width / 2 rect.Y + rect.Height / 2);
g.TranslateTransform(center.X center.Y);
g.RotateTransform(360 - angle);
//恢复图像在水平和垂直方向的平移
g.TranslateTransform(-center.X -center.Y);
g.DrawImage(b rect);
//重至绘图的所有变换
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 22 2019-01-08 00:19 WindowsFormsApp1\.git\COMMIT_EDITMSG
文件 652 2019-01-08 00:19 WindowsFormsApp1\.git\config
文件 73 2019-01-08 00:19 WindowsFormsApp1\.git\desc
文件 23 2019-01-08 00:19 WindowsFormsApp1\.git\HEAD
文件 478 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\applypatch-msg.sample
文件 896 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\commit-msg.sample
文件 189 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\post-update.sample
文件 424 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\pre-applypatch.sample
文件 1642 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\pre-commit.sample
文件 1348 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\pre-push.sample
文件 4898 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\pre-reba
文件 544 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\pre-receive.sample
文件 1239 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\prepare-commit-msg.sample
文件 3610 2019-01-08 00:19 WindowsFormsApp1\.git\hooks\update.sample
文件 1342 2019-01-08 00:19 WindowsFormsApp1\.git\index
文件 240 2019-01-08 00:19 WindowsFormsApp1\.git\info\exclude
文件 342 2019-01-08 00:19 WindowsFormsApp1\.git\logs\HEAD
文件 342 2019-01-08 00:19 WindowsFormsApp1\.git\logs\refs\heads\master
文件 150 2019-01-08 00:19 WindowsFormsApp1\.git\ms-persist.xm
文件 309 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 751 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 186 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 186 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 2112 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 491 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 718 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 201 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 163 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 460 2019-01-08 00:19 WindowsFormsApp1\.git\ob
文件 89 2019-01-08 00:19 WindowsFormsApp1\.git\ob
............此处省略85个文件信息
- 上一篇:C#语言的网络爬虫
- 下一篇:C#6.0学习笔记随书代码
相关资源
- C#6.0学习笔记随书代码
- C#语言的网络爬虫
- 杨中科老师.net视频1-13季
- c#与三菱PLC通讯读写
- C#基本读取和写入INI配置文件
- 《零基础学C#》明日科技出版丛书光盘
- C#操作数据库增删改查
- C#多线程编程 线程与窗体交互源码.
- oracle 图书馆系统
- c#窗体编程显示鼠标位置;菜单程序;
- C# asp.net导入和导出excel完整源码
- C# 操作解析Json源码
- 漂亮的C#软件启动界面特效源码 这是
- c# 完美解析csv
- C# 蓝牙 文件传输 DEMO
- C#开发大全(基础卷)源码-蓝松
- C# SFTP上传文件
- 用C#写的个人所得税计算器
- C#用户名密码登入程序很适合初学者(
- c#实现HttpClient拼接multipart/form-data形式
- C#试题最全版本2020
- C#圣诞树程序,可当圣诞礼物
- 用c#编写的矩阵类,可进行矩阵的各项
- kmeans聚类算法——C#实现
- C#启动界面类似动画效果,非常漂亮,
- C#版IEEE754
- winform动态生成label和控件拖动(C#.N
- C#用S7.net.dll文件,里面包含使用文档
- .net平台C#MongoDB最新版操作类
- C#_winform_html编辑器_富文本编辑器③
评论
共有 条评论