-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.ImageDrawPixelV
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Draw pixel within an image (Vector version)
| Parameter | Default Value | Note |
|---|---|---|
| dst | ||
| position | [0, 0] | |
| color | WHITE |
None.
img = raylib.GenImageColor(64, 64, raylib.BLACK)
raylib.ImageDrawPixelV img, [10, 10], raylib.RED
raylib.ExportImage img, "dot_v.png"
raylib.UnloadImage img