Type to search...

Red, blue, green - The RGB color model

Color balance is the global adjustment of the intensity of the colors (typically red, green, and blue primary colors).

e:red, e:green and e:blue

Parameters

  • integer, min -100, max 100

Limitations

  • Applicable only to images smaller than 25 mega pixels.

Dependencies

  • This transformation does not have any dependencies.

Examples

Red effect

w:200_e:red:20
use shardimage\shardimagephp\factories\Transformation;
$transformations = (new Transformation())->width(200)->tintRed(20);

Green effect

w:200_e:green:20
use shardimage\shardimagephp\factories\Transformation;
$transformations = (new Transformation())->width(200)->tintGreen(20);

Blue effect

w:200_e:blue:20
use shardimage\shardimagephp\factories\Transformation;
$transformations = (new Transformation())->width(200)->tintBlue(20);
Table of contents