Hey Folk, I'm facing an issue while trying to load...
# compose
e
Hey Folk, I'm facing an issue while trying to load an image from a bitmap (a PNG file), but the background is black instead of being transparent, does it possible to fix that with color filter in compose ?
r
Is there an option to remove the background before putting it into your app? Or is it already transparent but its rendering black where it should be transparent?
e
The image itself doesn't have any background
t
It's probably causing by how you load the image. `
Copy code
Bitmap.Config.ARGB_8888 else Bitmap.Config.RGB_565
Some tools default to 565 that removes the alpha bit.