ImageDraw
ImageDraw (statement)
Format
imagedraw internal_image_identifier, x, y\
Description
Draws an image in memory to the graphics output window, at a specific location.
Example
f = openfiledialog("","","Image Files (*.png *.jpg *.bmp)")
a = imageload(f)
## show half size
imageresize a, .5
imagedraw a,100,100
# show 127x72 thumbnail
imageresize a, 128, 72
imagedraw a, 10,10
See Also
ImageAutoCrop, ImageCentered, ImageCopy, ImageCrop, ImageDraw, ImageFlip, ImageHeight, ImageLoad, ImageNew, ImagePixel, ImageResize, ImageRotate, ImageSetPixel, ImageSmooth, ImageTransformed, ImageWidth, Unload
History
| 1.99 | New to Version |