Skip to contents

Generate image: grayscale image from text data.

Usage

gen_image_text(width, height, text)

Arguments

width

An integer.

height

An integer.

text

A string.

Value

An image

Note

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

Image GenImageText(int width, int height, const char * text);

Examples

if (FALSE) {
gen_image_text(800L, 450L, "Hello")
}