I have an Image
Composable component as in:
Image(
...
bitmap = bitmap
...
)
That image component is further transformed, scaled and panned. Is it possible to get the resulting Bitmap
or ImageBitmap
out of this Image
component?
I have an Image
Composable component as in:
Image(
...
bitmap = bitmap
...
)
That image component is further transformed, scaled and panned. Is it possible to get the resulting Bitmap
or ImageBitmap
out of this Image
component?