Glide fluent transformation is a library written in Kotlin that allows you to add extra bitmap transformations to your code with a fluent syntax beyond the Glide core transformations
Add the next dependency in the build.gradle of the android module where you want to use this library:
implementation "com.vjgarcia:glide-fluent-transformations:0.0.4"
Use library transformations as Glide usual transformations
Glide.with(this)
.load(anyURI)
.topCrop()
.into(anyImageView)
TBD
You can check an example of the library usage at app module of this project