wasabeef / glide-transformations

An Android transformation library providing a variety of image transformations for Glide.
Apache License 2.0
9.9k stars 1.41k forks source link

jp.wasabeef.glide.transformations.CropCircleTransformation is deprecated #115

Closed quevon24 closed 6 years ago

quevon24 commented 6 years ago

Awesome library works great but I noticed that when I apply the transformation displays this message: jp.wasabeef.glide.transformations.CropCircleTransformation is deprecated

This will affect somehow functionality of the app?

Thanks

wasabeef commented 6 years ago

@quevon24

I don't have the plan to delete CropCircleTransformation. but I recommend that you should use the .circleCrop() original of Glide.

like this.

GlideApp.with(context)
  .asBitmap()
  .load(canonical.getBitmap())
  .circleCrop()
  .override(50)