2013-06-19 99 views
7

我有下面的代碼,用於將圖片從IOS設備上傳並調整到我的.net應用程序。用戶使用縱向拍照,然後所有照片以錯誤的旋轉顯示在我的應用程序中。任何建議如何解決這個問題?從IOS圖片上傳到.net應用程序:旋轉

  string fileName = Server.HtmlEncode(FileUploadFormbilde.FileName); 
      string extension = System.IO.Path.GetExtension(fileName); 
      System.Drawing.Image image_file = System.Drawing.Image.FromStream(FileUploadFormbilde.PostedFile.InputStream); 
      int image_height = image_file.Height; 
      int image_width = image_file.Width; 
      int max_height = 300; 
      int max_width = 300; 

      image_height = (image_height * max_width)/image_width; 
      image_width = max_width; 

      if (image_height > max_height) 
      { 
       image_width = (image_width * max_height)/image_height; 
       image_height = max_height; 
      } 

      Bitmap bitmap_file = new Bitmap(image_file, image_width, image_height); 
      System.IO.MemoryStream stream = new System.IO.MemoryStream(); 

      bitmap_file.Save(stream, System.Drawing.Imaging.ImageFormat.Png); 
      stream.Position = 0; 

      byte[] data = new byte[stream.Length + 1]; 
      stream.Read(data, 0, data.Length); 

回答

1

必須從Image.PropertyItems集合中的EXIF數據中讀取圖像的方向值,並相應地旋轉。

+0

任何代碼示例?我無法找到如何在我的代碼中成功實現這一點。 –

+2

對不起。你已經在正確的圖像對象,我給你一個鏈接來閱讀。我堅信重要的是要通過做,而不是通過複製粘貼代碼來學習。 (不是說有數百個代碼示例在那裏。) – Alexander

25

在這裏你去我的朋友:

Image originalImage = Image.FromStream(data); 

if (originalImage.PropertyIdList.Contains(0x0112)) 
     { 
      int rotationValue = originalImage.GetPropertyItem(0x0112).Value[0]; 
      switch (rotationValue) 
      { 
       case 1: // landscape, do nothing 
        break; 

       case 8: // rotated 90 right 
        // de-rotate: 
        originalImage.RotateFlip(rotateFlipType: RotateFlipType.Rotate270FlipNone); 
        break; 

       case 3: // bottoms up 
        originalImage.RotateFlip(rotateFlipType: RotateFlipType.Rotate180FlipNone); 
        break; 

       case 6: // rotated 90 left 
        originalImage.RotateFlip(rotateFlipType: RotateFlipType.Rotate90FlipNone); 
        break; 
      } 
     } 
+1

僅供參考,要使用'PropertyIdList.Contains()',您必須包含'using System.Linq'。 –

+0

你在這裏保存了我的萌芽! –

+1

某些值缺失,此屬性可以包含1到8之間的任何值:http://www.impulseadventure.com/photo/exif-orientation.html – Guillaume

相關問題