Change image color

This free online tool allows you to change color of images by changing the red, green and blue components of each pixel of the image.

Drop your image here

How this tools works?

This tools works by changing the red, green and blue components of each pixel in the source image, according to the parameters that you choose.

For each pixel in the source image, the value of the "red" component will be multiplied by the red parameter, the value of the "green" component will be multiplied by the green parameter, and the value of the "blue" component will be multiplied by the blue parameter.

The value of the red, green and blue parameters can be any number between 0 and 255. If the value is 1, the color component will remain unchanged. If the value is 0, the color component will become 0, no matter the value of the component in the source image.

This tool is similar to the "modulate" of the CanvasItem in the Godot game engine, with the "raw" option enabled.

Below is the formula used in this tool, for each pixel:

target_red = source_red * red_multiplier
target_green = source_green * green_multiplier
target_blue = source_blue * blue_multiplier
                

Configuration parameters

Below are the parameters you can configure when changing the color of an image.

FieldDescription
RedThe multiplier for the red component. Must be a number between 0 and 255.
GreenThe multiplier for the green component. Must be a number between 0 and 255.
BlueThe multiplier for the blue component. Must be a number between 0 and 255.

Related tools

Change image hue

Adjust the hue of images. Hue rotate images by specifying an angle around the color circle.

RGB Formula Editor

Edit images using math equations. Transform images by applying custom RGB formulas to each pixel.