colorize — Change color values of an image
Description
public Intervention\Image\Image colorize(integer $red, integer $green, integer $blue)
Change the RGB color values of the current image on the given channels red, green and blue. The input values are normalized so you have to include parameters from 100
for maximum color value 0
for no change and -100
to take out all the certain color on the image.
Parameters
red
Add or take out a amount of red color on the image. Use values between -100 and +100.
green
Add or take out a amount of green color on the image. Use values between -100 and +100.
blue
Add or take out a amount of blue color on the image. Use values between -100 and +100.
Return Values
Instance of Intervention\Image\Image
Examples
// create new Intervention Image
$img = Image::make('public/foo.jpg');
// take out red color and add blue
$img->colorize(-100, 0, 100);
// just add a little green tone to the image
$img->colorize(0, 30, 0);
See also
当前内容版权归 intervention 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 intervention .