We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac99f6 commit fe1d18eCopy full SHA for fe1d18e
library/src/main/java/io/appwrite/enums/ImageFormat.kt
@@ -12,7 +12,9 @@ enum class ImageFormat(val value: String) {
12
@SerializedName("png")
13
PNG("png"),
14
@SerializedName("webp")
15
- WEBP("webp");
+ WEBP("webp"),
16
+ @SerializedName("avif")
17
+ AVIF("avif");
18
19
override fun toString() = value
20
}
0 commit comments