How to rotate image using glide library? (Like in picasso)
问题 I am trying to rotate the image using glide library. Previously, was able to do with Picasso (due to an issue, I moved to glide). Now I am missing rotate functionality in glide. I tried using transformations but didn't work. // Code used public class MyTransformation extends BitmapTransformation { private float rotate = 0f; public MyTransformation(Context context, float rotate) { super(context); this.rotate = rotate; } @Override protected Bitmap transform(BitmapPool pool, Bitmap toTransform,