美文网首页
解决三星手机图片旋转

解决三星手机图片旋转

作者: 43d60efa37c7 | 来源:发表于2016-12-20 17:47 被阅读15次

    public static Bitmap getBitmap(String path){

    Bitmap img = BitmapFactory.decodeFile(path);

    Matrix matrix = new Matrix();

    matrix.postRotate(readPictureDegree(path)); /*翻转*/

    int width = img.getWidth();

    int height =img.getHeight();

    img = Bitmap.createBitmap(img, 0, 0, width, height, matrix, true);

    return img;

    }

    相关文章

      网友评论

          本文标题:解决三星手机图片旋转

          本文链接:https://www.haomeiwen.com/subject/qwkfvttx.html