Hi, is there a way to generate dynamically an imag...
# compose-desktop
a
Hi, is there a way to generate dynamically an image with a text ?
k
If you're targeting only the desktop variant, you can create an
ImageBitmap
, wrap it in
Canvas
, call
Canvas.nativeCanvas
to get the Skia canvas object, and then use
drawTextBlob
or
drawTextLine
on that object.