ImageDrawText function

void ImageDrawText(
  1. StructPointer<ImageD> dst,
  2. MemoryPointer<RChar> text,
  3. int posX,
  4. int posY,
  5. int fontSize,
  6. ColorD color,
)

See RaylibCoreFlatModule.ImageDrawText.

Implementation

void ImageDrawText(
  StructPointer<ImageD> dst,
  MemoryPointer<RChar> text,
  int posX,
  int posY,
  int fontSize,
  ColorD color,
) => _module.ImageDrawText(dst, text, posX, posY, fontSize, color);