Skip to content

raylib.ImageColorTint

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Modify image color: tint

Parameters

Parameter Default Value Note
image
color WHITE

Return value

None.

Notes

Example

img = raylib.LoadImage("sprite.png")
// Tint the image red
raylib.ImageColorTint img, raylib.RED
raylib.ExportImage img, "sprite_red.png"
raylib.UnloadImage img

Clone this wiki locally