三星手機拍照,從圖庫選擇照片旋轉問題完美解決,三星手機圖庫

來源:互聯網
上載者:User

三星手機拍照,從圖庫選擇照片旋轉問題完美解決,三星手機圖庫

  最近解決了一個令我頭疼好久的問題,就是三星手機拍照圖片旋轉的問題,項目中有上傳圖片的功能,那麼涉及到拍照,從相簿中選擇圖片,別的手機都ok沒有問題,唯獨三星的手機拍照之後,你會很清楚的看到會把照片旋轉一下,然後你根據路徑找到的圖片就是已經被旋轉的了,解決辦法終於被我找到了。我們可以根據圖片的路徑讀取照片exif(Exchangeable Image File 可交換影像檔)資訊中的旋轉角度

根據調試,可以清楚的發現三星手機拍照的圖片的旋轉角度是90度,而別的手機旋轉角度是0度

看一下代碼:

/**      * 讀取照片exif資訊中的旋轉角度      * @param path 照片路徑      * @return角度      */      public static int readPictureDegree(String path) {          int degree  = 0;          try {              ExifInterface exifInterface = new ExifInterface(path);              int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);              switch (orientation) {                  case ExifInterface.ORIENTATION_ROTATE_90:                      degree = 90;                      break;                  case ExifInterface.ORIENTATION_ROTATE_180:                      degree = 180;                      break;                  case ExifInterface.ORIENTATION_ROTATE_270:                      degree = 270;                      break;              }          } catch (IOException e) {              e.printStackTrace();          }          return degree;      }  

那麼我們只需要根據旋轉角度將圖片旋轉過來就OK了

public static Bitmap toturn(Bitmap img){          Matrix matrix = new Matrix();          matrix.postRotate(+90); /*翻轉90度*/          int width = img.getWidth();          int height =img.getHeight();          img = Bitmap.createBitmap(img, 0, 0, width, height, matrix, true);          return img;  } 

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.