ImageDrawTextEx method

void ImageDrawTextEx(
  1. Pointer<ImageC> dst,
  2. FontC font,
  3. Pointer<Char> text,
  4. Vector2C position,
  5. double fontSize,
  6. double spacing,
  7. ColorC tint,
)

Draw text (custom sprite font) within an image (destination)

Implementation

void ImageDrawTextEx(Pointer<ImageC> dst, FontC font, Pointer<Char> text, Vector2C position, double fontSize, double spacing, ColorC tint)
  => _ImageDrawTextEx(dst, font, text, position, fontSize, spacing, tint);