Skip to contents

Load image from RAW file data.

Usage

load_image_raw(file_name, width, height, format, header_size)

Arguments

file_name

A string.

width

An integer.

height

An integer.

format

An integer.

header_size

An integer.

Value

An image

Note

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

Image LoadImageRaw(const char * fileName, int width, int height, int format, int headerSize);

Examples

if (FALSE) {
load_image_raw("file.png", 800L, 450L, 0L, 32L)
}