ImageDrawText method

void ImageDrawText(
  1. Pointer<ImageC> dst,
  2. Pointer<Char> text,
  3. int posX,
  4. int posY,
  5. int fontSize,
  6. ColorC color,
)

Draw text (using default font) within an image (destination)

Implementation

void ImageDrawText(Pointer<ImageC> dst, Pointer<Char> text, int posX, int posY, int fontSize, ColorC color)
  => _ImageDrawText(dst, text, posX, posY, fontSize, color);