Image manipulation

日本語のページ

The blocks in the "Image" → "Basic" and "Image" → "Filter" groups allow you to perform various image operations.

Connecting to the RPA Server

Image operations are performed via the RPA server.
Before executing image-related blocks, execute the block that connects to the RPA server.

Connect to RPA server

Opening an Image

The "image from file" block allows you to open an image file.

Open image

The return value is a value representing the image ID.
This value should be assigned to a variable and passed to various image processing blocks.

Open image and set to variable

Create New Image

You can create a new image using the "newimage" block.
The "width" and "height" parameters specify the image size.
Additionally, the "color" parameter specifies the fill color within the image.

Create new image

The return value is a value representing the image ID.
This value should be assigned to a variable and passed to various image processing blocks.

Create new image and set to variable

Image Manipulation

You can manipulate images using blocks such as cropping.

Crop image

The return value is a value representing the ID of the image after the operation.
This ID is then assigned back to a variable so that the next operation can be performed.

Save Image

The "save image to XX" block allows you to save the image after various operations to a file.

Save image

Show Image

The "show image" block allows you to display the image on the screen after performing various operations.

Show image

Apply Filters to Image

The "Image" → "Filter" group block allows you to apply various filters, such as blur, to the image.

Gaussian blur

After opening the image using the "Opened Image" block, use the filter block to apply a filter to that image.