HomeImagickImagickDrawImagickPixelImagick Pixel IteratorImagick KernelDevelopmentTutorial Source codeReport an issue
Category
Example

Modulate image

← mergeImageLayers   montageImage →
Lets you control the brightness, saturation, and hue of an image. Hue is the percentage of absolute rotation from the current position. For example 50 results in a counter-clockwise rotation of 90 degrees, 150 results in a clockwise rotation of 90 degrees, with 0 and 200 both resulting in a rotation of 180 degrees.
Hue - 0 = -180°, 100 = 0°, 200 = +180°. So 0 and 200 give them same result.
Brightness - 0 = totally dark, 100 = no brightness change, 200 = totally white.
Saturation - 0 = totally gray, 100 = no change, 200 maximum color

Example

function modulateImage($image_path, $hue, $brightness, $saturation)
{
    $imagick = new \Imagick(realpath($image_path));
    $imagick->modulateImage($brightness, $saturation, $hue);
    header("Content-Type: image/jpeg");
    echo $imagick->getImageBlob();
}