I am using glide library to load image url in image view.
Glide.with(context)
.load(imageurl)
.apply(RequestOptions.circleCropTransform())
.into(holder.thumbnail);
Actually, the image is loaded fine with rounded image.
I need the image to be loaded with rounded + grayscale image
Can this be done by using glide lib?