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

lib not work #176

Open MoustafaElsaghier opened 4 years ago

MoustafaElsaghier commented 4 years ago

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);

I'me using this

    implementation 'com.github.bumptech.glide:glide:4.11.0'
    implementation 'jp.wasabeef:glide-transformations:2.0.1'
RWitak commented 4 years ago

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.