標籤:android 取出 恢複 jpg set 工具 win enter system
1、我們平時手機拍的照片,傳到電腦後,使用Photoshop或者其它圖片瀏覽工具開啟時,發現圖片是被轉過的。可是Windows上預覽卻是正的。其實原因是部分Android或IOS手機拍照後,將圖片角度資訊存到了Exif資訊中。我們只需要讀取出來,再做相應的重繪,即可。
2、代碼送上。
class ImageNormal { public void NormalImageDegree(string imagePath) { var bitmap = (Bitmap)Bitmap.FromFile(imagePath); var exif = bitmap.GetExif(); if (exif.Orientation == ExifNET.Models.Types.Orientation.Normal) return; Bitmap newBitmap = null; switch (exif.Orientation) { case ExifNET.Models.Types.Orientation.Rotate90: newBitmap = rotateImage(bitmap, -90); break; case ExifNET.Models.Types.Orientation.Rotate270: newBitmap = rotateImage(bitmap, -270); break; case ExifNET.Models.Types.Orientation.Rotate180: newBitmap = rotateImage(bitmap, -180); break; default: break; } bitmap.Dispose(); if (newBitmap != null) { newBitmap.Save(imagePath, System.Drawing.Imaging.ImageFormat.Jpeg); newBitmap.Dispose(); } } private Bitmap rotateImage(Bitmap b, float 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); //重至繪圖的所有變換 g.ResetTransform(); g.Save(); g.Dispose(); //dsImage.Save("yuancd.jpg", System.Drawing.Imaging.ImageFormat.Jpeg); return dsImage; } }
部分Android或IOS手機拍照後照片被旋轉的問題