ImageDrawPoint
Was this helpful?
Draws a single point on an image. This BIF allows you to specify the position of the point in BoxLang.
ImageDrawPoint(name, x, y)name
any
Yes
The image or the name of a variable referencing an image to operate on.
x
numeric
Yes
The x coordinate of the point.
y
numeric
Yes
The y coordinate of the point.
BoxImage: The modified BoxImage instance with the point drawn.
ImageDrawPoint draws a single point on the specified image at the given (x, y) coordinates. The image can be passed directly or referenced by variable name.
// Draw a point at (10, 20)
img = ImageDrawPoint(myImage, 10, 20);ImageDrawLine
ImageDrawRect
All arguments are required.
The image can be passed as a BoxImage object or as a variable name referencing an image.
The point is drawn as a 1x1 filled rectangle at (x, y).
Was this helpful?
Was this helpful?
