-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.ImageColorBrightness
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Modify image color: brightness NOTE: Brightness values between -255 and 255
| Parameter | Default Value | Note |
|---|---|---|
| image | ||
| brightness |
None.
img = raylib.LoadImage("photo.png")
// Increase brightness by 50 steps
raylib.ImageColorBrightness img, 50
raylib.ExportImage img, "photo_bright.png"
raylib.UnloadImage img