Skip to contents

Export image data to file, returns true on success.

Usage

export_image(image, file_name)

Arguments

image

An image.

file_name

A string.

Value

A logical

Note

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

bool ExportImage(Image image, const char * fileName);

Examples

if (FALSE) {
export_image(gen_image_color(100, 100, "blue"), "file.png")
}