7

我一直在使用 Glide 在我的应用程序中加载图像。我在加载图像时使用了一个自定义转换ImageView
问题是我想centerCrop在获取的图像上应用我的自定义转换和两者。但 Glide 仅使用我的自定义转换并ImageViewfitXY.
这是我的代码:

Glide.with(context)
    .load(uri)
    .placeholder(R.drawable.image_id)
    .transform(new CustomTransformation(context))
    .centerCrop()
    .into(imageView);

我如何达到预期的效果?任何帮助将非常感激。

4

6 回答 6

10

在 Glide v4.6.1 中,我发现MultiTransformation该类使这变得简单:

MultiTransformation<Bitmap> multiTransformation = new MultiTransformation<>(new CustomTransformation(), new CircleCrop());

Glide.with(DemoActivity.this).load(file)
                .apply(RequestOptions.bitmapTransform(multiTransformation))
                .into(mPreviewImageView);
于 2018-06-11T03:12:21.487 回答
4

制作自己的CustomTransformationwhich extends ,然后在进行自定义转换之前CenterCrop覆盖transform()调用。super

例如:

 Glide.with(Context)
                    .load(url)
                    .asBitmap()
                    .transform(new CenterCrop(context) {
                                @Override
                                protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
                                    // Call super to have your image center cropped
                                    toTransform = super.transform(pool, toTransform, outWidth, outHeight);
                                    // Apply your own custom transformation
                                    return ImageUtils.fastblur(toTransform, BLUR_RADIUS);
                                }

                                @Override
                                public String getId() {
                                    return "com.example.imageid"
                                }
                            })
                    .placeholder(placeholder)
                    .into(imageView);
于 2015-11-10T08:48:03.117 回答
2

您可以像这样应用多个转换:

 Glide.with(getContext())
            .load(url)
            .bitmapTransform(new CenterCrop(getContext()), new BlurTransformation(getContext(), BLUR_RADIUS), new GrayscaleTransformation(getContext()))
            .into(imageView);
于 2016-11-17T11:17:52.407 回答
2

在 Glide 4.11 中,我们可以使用MultiTransformation转换列表:

GlideApp.with(imageView)
    .load(url)
    .transform(MultiTransformation(CenterCrop(), RoundedCorners(10), Rotate(30)))
    // .error(...)
    .into(imageView)
于 2020-09-08T16:44:24.033 回答
1

更好的方法(尤其是 Glide 4 不再接受一个以上的BitmapTransformation)是创建一个CombinedTransformation,如下所示:

class CombinedTransformation(vararg val transformations: Transformation<Bitmap>) 
        : Transformation<Bitmap> {
    override fun transform(context: Context, resource: Resource<Bitmap>, 
                           outWidth: Int, outHeight: Int): Resource<Bitmap> {
        var out = resource
        for (transformation in transformations) {
            out = transformation.transform(context, out, outWidth, outHeight)
        }
        return out
    }
    override fun updateDiskCacheKey(messageDigest: MessageDigest) {
        transformations.forEach { it.updateDiskCacheKey(messageDigest) }
    }
}

然后像这样使用它(再次,Glide 4):

val options = RequestOptions()
options.transform(CombinedTransformation(CenterCrop(...), BlurTransformation(...)))
Glide.with(context).load(url).apply(options).into(imageView)
于 2017-06-29T07:51:19.850 回答
1

2021语法...

看来你现在需要“新”了:

protected void setPicture() {

    String url = doc.get("image");

    // the rounding of the products_box is 12dp
    int twelve = _dp(12);

    Glide.with(itemView.getContext())
            .load(url)
            .transform(
               new MultiTransformation(
                  new CenterCrop(),
                  new RoundedCorners(twelve)))
            .into(happy_product_image);
}

(请注意,像往常一样,您需要转换 DP 金额,例如https://stackoverflow.com/a/66459077/294884

于 2021-03-28T01:44:08.727 回答