Is there a way to turn a skia Image into a PNG? Th...
# compose-desktop
s
Is there a way to turn a skia Image into a PNG? The fastest way that I’ve found is to turn it into an AWT image like this
.toComposeImageBitmap().toAwtImage()
and then use
ImageIO
to write PNG to an output stream or file. I’m wondering if there is a way to do skia Image to PNG directly.
i
This should work:
Copy code
val image: Image
image.encodeToData(EncodedImageFormat.PNG)
s
that did work! thanks!