Note: You are looking at a static snapshot of documentation related to Robot Framework automations. The most recent documentation is at https://robocorp.com/docs

RPA.Images

Crop an existing image.

Arguments

ArgumentTypeDefault value
imagenull
regionnull
filenameNone
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 value
imagenull
templatenull
regionNone
limitNone
toleranceNone
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 value
imagenull
pointnull
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 value
imagenull
regionnull
colorred
width5
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