Skip to content

raylib.ImageDrawPixelV

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Draw pixel within an image (Vector version)

Parameters

Parameter Default Value Note
dst
position [0, 0]
color WHITE

Return value

None.

Notes

Example

img = raylib.GenImageColor(64, 64, raylib.BLACK)
raylib.ImageDrawPixelV img, [10, 10], raylib.RED
raylib.ExportImage img, "dot_v.png"
raylib.UnloadImage img

Clone this wiki locally