Skip to contents

Create an image from text (default font).

Usage

image_text(text, font_size, color)

Arguments

text

A string.

font_size

An integer.

color

A color.

Value

An image

Note

This function has been auto-generated from the following Raylib function definition:

Image ImageText(const char * text, int fontSize, Color color);

Examples

if (FALSE) {
image_text("Hello", 20L, "red")
}