imgageresize internal_image_identifier, scale
imgageresize internal_image_identifier, width, height
Resize an image in memory.
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
1.99 | New to Version |