小编典典

如何使用 Glide 库对图像进行四舍五入?

all

那么,有人知道如何使用 Glide 显示带有圆角的图像吗?我正在使用 Glide 加载图像,但我不知道如何将舍入参数传递给该库。

我需要显示图像,如下例:

在此处输入图像描述


阅读 59

收藏
2022-06-06

共1个答案

小编典典

滑翔 V4:

    Glide.with(context)
        .load(url)
        .circleCrop()
        .into(imageView);

滑翔 V3:

您可以使用RoundedBitmapDrawableGlide 制作圆形图像。不需要自定义 ImageView。

 Glide.with(context).load(url).asBitmap().centerCrop().into(new BitmapImageViewTarget(imageView) {
        @Override
        protected void setResource(Bitmap resource) {
            RoundedBitmapDrawable circularBitmapDrawable =
                    RoundedBitmapDrawableFactory.create(context.getResources(), resource);
            circularBitmapDrawable.setCircular(true);
            imageView.setImageDrawable(circularBitmapDrawable);
        }
    });
2022-06-06