UdaraWanasinghe / webp-android

libwebp JNI bindings to encode a series of Android bitmap images to an animated WebP image.
MIT License
14 stars 0 forks source link

loss blue color #1

Closed sywgzh closed 1 year ago

sywgzh commented 1 year ago

I try it,but it loss blue color in anim webp

UdaraWanasinghe commented 1 year ago

Please make sure you are using ARGB_8888 config in the bitmap factory decode options.

val options = BitmapFactory.Options()
options.inPreferredConfig = Bitmap.Config.ARGB_8888
sywgzh commented 1 year ago

thank you