Image.getImage

From MiniScript Wiki
Revision as of 22:35, 1 April 2020 by 71.226.33.30 (talk)
Jump to navigation Jump to search

Image.getImage returns a rectangular portion of the image as a new image.

Arguments

Parameter Name Type Default Value Meaning
left number 0 leftmost horizontal coordinate of the portion to get
bottom number 0 lowest vertical coordinate of the portion to get
width number image.width width (in pixels) of portion to get
height number image.height height (in pixels) of portion to get)

Example

img = file.loadImage("/sys/pics/Wumpus.png")
		//	eyes = img.getImage(35, 59, 60, 48)
		//	view eyes