部分Android或IOS手機拍照後照片被旋轉的問題

來源:互聯網
上載者:User

標籤: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手機拍照後照片被旋轉的問題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.