Android 圖片旋轉

來源:互聯網
上載者:User

標籤:

拍照後的照片有時被系統旋轉,糾正步驟如下:

1.先讀取圖片檔案被旋轉的角度:

/**     * 通過ExifInterface類讀取圖片檔案的被旋轉角度     * @param path : 圖片檔案的路徑     * @return 圖片檔案的被旋轉角度     */    public static int readPicDegree(String path) {        int degree = 0;        // 讀取圖片檔案資訊的類ExifInterface        ExifInterface exif = null;        try {            exif = new ExifInterface(path);        } catch (IOException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }        if (exif != null) {            int orientation = exif.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;            }        }        return degree;    }

2.再將上述角度作為參數,傳遞給下面函數糾正:

    /**     * 將圖片糾正到正確方向     *      * @param degree : 圖片被系統旋轉的角度     * @param bitmap : 需糾正方向的圖片     * @return 糾向後的圖片     */    public static Bitmap rotateBitmap(int degree, Bitmap bitmap) {        Matrix matrix = new Matrix();        matrix.postRotate(degree);        Bitmap bm = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(),                bitmap.getHeight(), matrix, true);        return bm;    }

 

Android 圖片旋轉

聯繫我們

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