Hello all, Is there any way to `save composable vi...
# compose-desktop
s
Hello all, Is there any way to
save composable view
as
Image
?
t
u want to take screenshot of a composable ?
s
Yes
In android we have someView.drawToBitmap() 💡 . Is there any workaround solution available for this?
k
From earlier in this channel:
Copy code
val window = TestComposeWindow(width = 1024, height = 768)
window.setContent {
}
File(path).writeBytes(window.surface.makeImageSnapshot().encodeToData()!!.bytes)
👍 3