Use glide v4 to resize local gif file (for saving to local storage not for displaying it)
Open
- Dominant language
- Java
- Stars
- 35k
- Forks
- 6.2k
- Avg merge
- 1d 11h
- Merged PRs (30d)
- 8
Description
Everyone is talking about viewing and displaying the gif. I searched the net many times.
please someone share the code snippet to resize the gif image and get the data type which can be used to write file. like byte array, file, drawable, streams, buffers.
```java
File file = Glide.with(reactContext)
.asFile()
.load(url)
// .override(512, 512)
.fitCenter()
.submit(512,512)
.get();
```
Contributor guide
Assessment
This issue has not been assessed yet.