RPA.Images

Crop an existing image.

Arguments

ArgumentTypeDefault valueDescription
imagenullImage to crop
regionnullRegion to crop image to
filenameNoneSave cropped image to filename
param image:Image to crop
param region:Region to crop image to
param filename:Save cropped image to filename

Attempt to find the template from the given image.

Arguments

ArgumentTypeDefault valueDescription
imagenullPath to image or Image instance, used to search from
templatenullPath to image or Image instance, used to search with
regionNoneArea to search from. Can speed up search significantly.
limitNoneLimit returned results to maximum of limit.
toleranceNoneTolerance for matching, value between 0.1 and 1.0
param image:Path to image or Image instance, used to search from
param template:Path to image or Image instance, used to search with
param limit:Limit returned results to maximum of limit.
param region:Area to search from. Can speed up search significantly.
param tolerance:
 Tolerance for matching, value between 0.1 and 1.0
return:List of matching regions
raises ImageNotFoundError:
 No match was found
raises ValueError:
 Template is larger than search region

Get the RGB value of a pixel in the image.

Arguments

ArgumentTypeDefault valueDescription
imagenullimage to get pixel from
pointnullcoordinates for pixel or Point object
param image:image to get pixel from
param point:coordinates for pixel or Point object
return:RGB value of pixel in image

Draw a rectangle onto the image around the given region.

Arguments

ArgumentTypeDefault valueDescription
imagenullimage to draw onto
regionnullcoordinates for region or Region object
colorredcolor of rectangle
width5line width of rectangle
param image:image to draw onto
param region:coordinates for region or Region object
param color:color of rectangle
param width:line width of rectangle
return:Image of the selected region