Possibility to cache transformed images to disk #1733
Replies: 1 comment
-
Answered here: #1959 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
Is there any possibility to cache a transformed image to disk and use this the next time the same request is made? For example:
val request = ImageRequest.Builder(context) .data("some url") .transformations(SomeExpensiveTransformation) .build()
What I want to do is to save the resulting image after the transformation to disk and when this particularly request is made a second time, the already transformed image is read from the disk cache?
Beta Was this translation helpful? Give feedback.
All reactions