Searched refs:hue (Results 1 – 9 of 9) sorted by relevance
/imagick/tests/ |
H A D | 093_Imagick_modulateImage_basic.phpt | 11 $hue = 150; 15 function modulateImage($hue, $brightness, $saturation) { 18 $imagick->modulateImage($brightness, $saturation, $hue); 23 modulateImage($hue, $brightness, $saturation) ;
|
H A D | 241_Tutorial_psychedelicFont_basic.phpt | 24 $hue = intval(170 + $strokeWidth * 360 / 25); 25 $draw->setStrokeColor("hsl($hue, 255, 128)");
|
H A D | 244_Tutorial_psychedelicFontGif_basic.phpt | 32 $hue = intval(fmod(($frame * 360 / $maxFrames) + 170 + $strokeWidth * 360 / 25, 360)); 33 $color = "hsl($hue, 255, 128)";
|
/imagick/ |
H A D | imagickpixel_class.c | 33 double hue, saturation, luminosity; in PHP_METHOD() local 44 PixelGetHSL(internp->pixel_wand, &hue, &saturation, &luminosity); in PHP_METHOD() 47 add_assoc_double(return_value, "hue", hue); in PHP_METHOD() 60 double hue, saturation, luminosity; in PHP_METHOD() local 63 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ddd", &hue, &saturation, &luminosity) == FAI… in PHP_METHOD() 72 PixelSetHSL(internp->pixel_wand, hue, saturation, luminosity); in PHP_METHOD()
|
H A D | ImagickPixel.stub.php | 71 public function setHSL(float $hue, float $saturation , float $luminosity): bool{} argument
|
H A D | ImagickPixel_arginfo.h | 241 ZEND_ARG_TYPE_INFO(0, hue, IS_DOUBLE, 0) 243 ZEND_ARG_INFO(0, hue)
|
H A D | Imagick.stub.php | 566 public function modulateImage(float $brightness, float $saturation, float $hue): bool {} argument
|
H A D | Imagick_arginfo.h | 2334 ZEND_ARG_TYPE_INFO(0, hue, IS_DOUBLE, 0) 2336 ZEND_ARG_INFO(0, hue)
|
H A D | imagick_class.c | 10265 double brightness, saturation, hue; local 10267 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ddd", &brightness, &saturation, &hue) == FAI… 10275 status = MagickModulateImage(intern->magick_wand, brightness, saturation, hue);
|
Completed in 49 milliseconds