gpt4 book ai didi

android - 如何停止 Glide 升级?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:49:35 28 4
gpt4 key购买 nike

我正在使用 Glide image loading library我在调整位图大小时遇到​​问题。

使用以下代码时:

Glide.with(getActivity())
.load(images.get(i))
.asBitmap().centerCrop()
.into(new SimpleTarget<Bitmap>(1200, 1200) {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation glideAnimation) {

}
});

每个位图都被调整为指定的尺寸。所以,如果图像是 400x300,它会放大到 1200 x 1200,这是我不想要的。我该如何做到,如果图像小于指定尺寸,它就不会调整大小?

我正在指定尺寸,因为我希望在考虑 centerCrop 的情况下调整每张大于指定尺寸的图像;然后如果图像小于指定尺寸,我不希望调整它的大小。

最佳答案

I want every image that's bigger than the specified dimensions to be resized taking into account centerCrop; and then if the image is smaller than the specified dimensions, I don't want it to be resized.

您可以通过自定义转换获得此行为:

public class CustomCenterCrop extends CenterCrop {

public CustomCenterCrop(BitmapPool bitmapPool) {
super(bitmapPool);
}

public CustomCenterCrop(Context context) {
super(context);
}

@Override
protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
if (toTransform.getHeight() > outHeight || toTransform.getWidth() > outWidth) {
return super.transform(pool, toTransform, outWidth, outHeight);
} else {
return toTransform;
}
}
}

然后像这样使用它:

Glide.with(getActivity())
.load(images.get(i))
.asBitmap()
.transform(new CustomCenterCrop(getActivity()))
.into(new SimpleTarget<Bitmap>(1200, 1200) {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation glideAnimation) {

}
});

关于android - 如何停止 Glide 升级?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36700721/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com