Glide旋转图片

Glide.with(mActivity)
.load(new File(path))
.error(R.drawable.unload)
.placeholder(R.drawable.loading)
.transform(new RotateTransformation(mActivity, 90f))
.into(image1);

/**
* 旋转
*/
public class RotateTransformation extends BitmapTransformation {

    private float rotateRotationAngle = 0f;

    public RotateTransformation(Context context, float rotateRotationAngle) {
        super(context);

        this.rotateRotationAngle = rotateRotationAngle;
    }

    @Override
    protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
        Matrix matrix = new Matrix();

        matrix.postRotate(rotateRotationAngle);

        return Bitmap.createBitmap(toTransform, 0, 0, toTransform.getWidth(), toTransform.getHeight(), matrix, true);
    }

    @Override
    public String getId() {
        return "rotate" + rotateRotationAngle;
    }
}

你可能感兴趣的:(Glide旋转图片)