使用C#旋转图片:EXIF

开发 后端
本文详细介绍了C#实现根据图片的EXIF自动调整图片方向的方法,希望对大家有用。

 一、什么是EXIF

Exif是英文Exchangeable Image File(可交换图像文件)的缩写,最初由日本电子工业发展协会(JEIDA --Japan Electronic Industry Development Association) 制订,目前的最新版本是发表于2002年04月的2.21 版。国际标准化组织(ISO)正在制订的相机文件设计标准(DCF -- Design role for Camera File system)可能以Exif2.1为基础。

所有的JPEG文件以字符串“0xFFD8”开头,并以字符串“0xFFD9”结束。文件头中有一系列“0xFF??”格式的字符串,称为“标识”,用来标记JPEG文件的信息段。“0xFFD8”表示图像信息开始,“0xFFD9”表示图像信息结束,这两个标识后面没有信息,而其它标识紧跟一些信息字符。

0xFFE0 -- 0xFFEF之间的标识符称为“应用标记”,没有被常规JPEG文件利用,Exif正是利用这些信息串记录拍摄信息如快门速度、光圈值等,甚至可以包括全球定位信息。其中拍摄方向的ID为“0x0112”,有1至8共8种值。而C#旋转图片可以通过EXIF来实现。

EXIF图1

二、EXIF Orientation

  1. Orientation   
  2. The image orientation viewed in terms of rows and columns.   
  3. Tag = 274 (112.H)   
  4. Type = SHORT   
  5. Count = 1   
  6. Default = 1   
  7. 1 = The 0th row is at the visual top of the image, and the 0th column is the visual left-hand side.   
  8. 2 = The 0th row is at the visual top of the image, and the 0th column is the visual right-hand side.   
  9. 3 = The 0th row is at the visual bottom of the image, and the 0th column is the visual right-hand side.   
  10. 4 = The 0th row is at the visual bottom of the image, and the 0th column is the visual left-hand side.   
  11. 5 = The 0th row is the visual left-hand side of the image, and the 0th column is the visual top.   
  12. 6 = The 0th row is the visual right-hand side of the image, and the 0th column is the visual top.   
  13. 7 = The 0th row is the visual right-hand side of the image, and the 0th column is the visual bottom.   
  14. 8 = The 0th row is the visual left-hand side of the image, and the 0th column is the visual bottom.   
  15. Other = reserved 

三、使用C#旋转图片

  1. public static void rotating(Bitmap img,ref int width, ref int height, int orien)  
  2. {  
  3.     int ow = width;  
  4.     switch (orien)  
  5.     {  
  6.         case 2:  
  7.             img.RotateFlip(RotateFlipType.RotateNoneFlipX);//horizontal flip  
  8.             break;  
  9.         case 3:  
  10.             img.RotateFlip(RotateFlipType.Rotate180FlipNone);//right-top  
  11.             break;  
  12.         case 4:  
  13.             img.RotateFlip(RotateFlipType.RotateNoneFlipY);//vertical flip  
  14.             break;  
  15.         case 5:  
  16.             img.RotateFlip(RotateFlipType.Rotate90FlipX);  
  17.             break;  
  18.         case 6:  
  19.             img.RotateFlip(RotateFlipType.Rotate90FlipNone);//right-top  
  20.             width = height;  
  21.             height = ow;  
  22.             break;  
  23.         case 7:  
  24.             img.RotateFlip(RotateFlipType.Rotate270FlipX);  
  25.             break;  
  26.         case 8:  
  27.             img.RotateFlip(RotateFlipType.Rotate270FlipNone);//left-bottom  
  28.             width = height;  
  29.             height = ow;  
  30.             break;  
  31.         default:  
  32.             break;  
  33.     }  

至此,使用C#旋转图片的目的就达到了。

【编辑推荐】

  1. C#代码与#函数相互调用问题集锦
  2. 如何使用泛型达到代码重用的目的
  3. 线性链表测试方法简介
  4. 创建一个简单的线性链表
  5. C#事件模型的一个实例
责任编辑:book05 来源: cnblogs
相关推荐

2009-08-20 12:35:41

C#读取图片的EXIF

2024-09-11 14:46:48

C#旋转按钮

2024-07-04 08:26:12

AndroidJPEG图片

2024-04-19 08:31:40

Android属性读取

2009-08-18 17:29:02

C#使用指针

2009-09-01 09:16:57

C#使用SharpZi

2009-08-19 14:26:58

C# JavaScri

2009-08-20 13:23:28

C#使用Crystal

2009-08-25 16:49:44

C#使用if语句

2009-08-31 16:12:02

C#使用Singlet

2009-08-14 15:23:10

C#使用ErrorPr

2009-08-19 16:42:41

C#如何使用XML

2009-08-19 15:18:53

迭代器

2009-08-11 13:27:22

C#创建Web Ser

2009-08-21 15:16:23

C#使用指针

2009-08-27 17:47:21

c#皮肤

2009-08-13 15:48:57

C#指针

2009-08-13 13:29:04

C#结构体使用

2013-07-29 10:02:42

2009-08-19 17:45:26

C#使用GDI+
点赞
收藏

51CTO技术栈公众号