glide-transformations icon indicating copy to clipboard operation
glide-transformations copied to clipboard

lib not work

Open MoustafaElsaghier opened this issue 4 years ago • 1 comments

I'm new to use this lib and my code working perfect, when i added the transformation it fails to load images

 Glide.with(context).load(arr.get(position).geturl())
                        .centerCrop()
                        .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(context, 0, 0)))
                        .into(holder.image);
  • Device: all android devices
  • OS: android

I'me using this

    implementation 'com.github.bumptech.glide:glide:4.11.0'
    implementation 'jp.wasabeef:glide-transformations:2.0.1'

MoustafaElsaghier avatar May 12 '20 14:05 MoustafaElsaghier

Have you checked if your images might be too large? There is a limit of 4096x4096 you might have to work around to show images larger than that.

RWitak avatar May 14 '20 12:05 RWitak