Skip to content

Commit a57824a

Browse files
authored
Create README.md
1 parent 0e76fa0 commit a57824a

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# JPEG XL plugin for Glide in Android 24+
2+
3+
The Glide JXL Plugin is an efficient and versatile library that seamlessly integrates with Glide, a popular image loading library for Android. With this plugin, you can effortlessly decode and display JPEG XL (JXL) images within your Android application, providing a superior image loading experience for your users.
4+
5+
# Installation
6+
7+
Just add app glide module in your main project and all will start work automatically
8+
9+
# Add Jitpack repository
10+
11+
```groovy
12+
repositories {
13+
maven { url "https://jitpack.io" }
14+
}
15+
```
16+
17+
```groovy
18+
implementation 'com.github.awxkee:avif-coder-glide:1.5.1' // or any version above picker from release tags
19+
```
20+
21+
# Usage
22+
23+
```kotlin
24+
// After you successfully added library you can start download JPEG XL images
25+
val imageView: ImageView = findViewById(R.id.imageView)
26+
val imageUrl = "https://example.com/your_image.jxl"
27+
28+
Glide.with(this)
29+
.load(imageUrl)
30+
.into(imageView)
31+
```
32+
33+
# Disclaimer
34+
35+
## JPEG XL
36+
37+
Enhance your Android app's image loading capabilities with the Glide JXL Plugin and provide your users with a smoother experience when handling JPEG XL (JXL) images. If you have any questions or need assistance, please refer to the GitHub repository for more information and support.

0 commit comments

Comments
 (0)