imageText function

Image imageText(
  1. String text,
  2. int fontSize,
  3. Color color
)

Create an image from text (default font).

Implementation

Image imageText(String text, int fontSize, Color color) {
  return Image.fromRef(
    library.ImageText(
      string.toNative(text),
      fontSize,
      color.ref,
    ),
  );
}