Imagick::brightnessContrastImage

(No version information available, might only be in Git)

Imagick::brightnessContrastImageDescription

说锟斤拷

public Imagick::brightnessContrastImage ( float $brightness , float $contrast [, int $channel = Imagick::CHANNEL_DEFAULT ] ) : bool

Change the brightness and/or contrast of an image. It converts the brightness and contrast parameters into slope and intercept and calls a polynomical function to apply to the image.

锟斤拷锟斤拷

brightness

contrast

channel

锟斤拷锟斤拷值

锟缴癸拷时锟斤拷锟斤拷 TRUE锟斤拷

锟斤拷锟斤拷

Example #1 Imagick::brightnessContrastImage()

<?php
function brightnessContrastImage($imagePath$brightness$contrast$channel) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->brightnessContrastImage($brightness$contrast$channel);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>