10

我是 Glide 库的新手,遵循此处的转换指南:https ://github.com/bumptech/glide/wiki/Transformations

我正在尝试创建一个自定义转换,但是当我在 Transformation 类的transform方法中放置一个断线时,我可以看到它从未被调用。

下面是我的代码:

private static class CustomTransformation extends BitmapTransformation {

    private Context aContext;

    public CustomTransformation(Context context) {
        super(context);
        aContext = context;
    }

    @Override
    protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
        return bitmapChanger(toTransform, 1080, (int) aContext.getResources().getDimension(R.dimen.big_image));
    }

    @Override
    public String getId() {
        return "some_id";
    }

}

private static Bitmap bitmapChanger(Bitmap bitmap, int desiredWidth, int desiredHeight) {
    float originalWidth = bitmap.getWidth();
    float originalHeight = bitmap.getHeight();

    float scaleX = desiredWidth / originalWidth;
    float scaleY = desiredHeight / originalHeight;

    //Use the larger of the two scales to maintain aspect ratio
    float scale = Math.max(scaleX, scaleY);

    Matrix matrix = new Matrix();

    matrix.postScale(scale, scale);

    //If the scaleY is greater, we need to center the image
    if(scaleX < scaleY) {
        float tx = (scale * originalWidth - desiredWidth) / 2f;
        matrix.postTranslate(-tx, 0f);
    }

    return Bitmap.createBitmap(bitmap, 0, 0, (int) originalWidth, (int) originalHeight, matrix, true);
}

我尝试以两种方式启动 Glide:

Glide.with(this).load(url).asBitmap().transform(new CustomTransformation(this)).into(imageView);

Glide.with(this).load(url).bitmapTransform(new CustomTransformation(this)).into(imageView);

但两者都不起作用。有任何想法吗?再说一次,我不是在寻找关于 Matrix 本身的建议,我只是不明白为什么transform(...)根本没有被调用。谢谢!

4

1 回答 1

20

您很可能遇到缓存问题。第一次编译和执行代码时,转换的结果会被缓存,因此下次不必将其应用于相同的源图像。

每个转换都有一个getId()方法,用于确定转换结果是否已更改。通常转换不会改变,但要么应用要么不应用。您可以在开发时在每次构建时更改它,但这可能很乏味。

要解决此问题,您可以将以下两个调用添加到 Glide 加载线:

// TODO remove after transformation is done
.diskCacheStrategy(SOURCE) // override default RESULT cache and apply transform always
.skipMemoryCache(true) // do not reuse the transformed result while running

第一个可以更改为 NONE,但是您每次都必须等待 url 从 Internet 加载,而不仅仅是从手机中读取图像。如果您可以导航到和离开有问题的转换并想要调试它,则第二个非常有用。它有助于在每次加载后不需要重新启动以清除内存缓存。

在完成转换的开发后不要忘记删除这些,因为它们会影响生产性能,如果有的话,应该在经过深思熟虑后使用。

笔记

看起来您正在尝试在加载之前将图像调整为特定大小,您可以与/ /.override(width, height)结合使用。.centerCrop().fitCenter().dontTransform()

于 2015-06-11T16:07:15.493 回答