Diego
Diego
```kotlin class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) GlobalScope.launch(Dispatchers.IO) { val url = "https://upload.wikimedia.org/wikipedia/commons/a/ad/Gretag-Macbeth_ColorChecker.jpg" val stream = URL(url).openStream() val bitmap = BitmapFactory.decodeStream(stream) .copy(Bitmap.Config.HARDWARE, false) Dali.create(this@MainActivity)...
I need to copy to a new bitmap using ARGB_8888 config to get the correct image, otherwise the colors get really trippy