Home
last modified time | relevance | path

Searched refs:hue (Results 1 – 9 of 9) sorted by relevance

/imagick/tests/
H A D093_Imagick_modulateImage_basic.phpt11 $hue = 150;
15 function modulateImage($hue, $brightness, $saturation) {
18 $imagick->modulateImage($brightness, $saturation, $hue);
23 modulateImage($hue, $brightness, $saturation) ;
H A D241_Tutorial_psychedelicFont_basic.phpt24 $hue = intval(170 + $strokeWidth * 360 / 25);
25 $draw->setStrokeColor("hsl($hue, 255, 128)");
H A D244_Tutorial_psychedelicFontGif_basic.phpt32 $hue = intval(fmod(($frame * 360 / $maxFrames) + 170 + $strokeWidth * 360 / 25, 360));
33 $color = "hsl($hue, 255, 128)";
/imagick/
H A Dimagickpixel_class.c33 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 DImagickPixel.stub.php71 public function setHSL(float $hue, float $saturation , float $luminosity): bool{} argument
H A DImagickPixel_arginfo.h241 ZEND_ARG_TYPE_INFO(0, hue, IS_DOUBLE, 0)
243 ZEND_ARG_INFO(0, hue)
H A DImagick.stub.php566 public function modulateImage(float $brightness, float $saturation, float $hue): bool {} argument
H A DImagick_arginfo.h2334 ZEND_ARG_TYPE_INFO(0, hue, IS_DOUBLE, 0)
2336 ZEND_ARG_INFO(0, hue)
H A Dimagick_class.c10265 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 59 milliseconds