ImagickPixel::_construct


wizard apg

The ImagickPixel constructor.



<?php

public ImagickPixel::__construct(string $color = ?)

?>

$color


The optional color string to use as the initial value of this object.





This function returns an ImagickPixel object on success, throwing ImagickPixelException on failure.



  1 EXERCISE   

<?php

$clr1 
'color name';

$color1 = new ImagickPixel($clr1);

// . . . . . . . . . . . . . . . .

?>

  2 EXERCISE   

<?php

$clr2 
"rgb('number for red', 'number for green', 'number for blue')";

// number for... from 0 to 255

$color2 = new ImagickPixel($clr2);

// . . . . . . . . . . . . . . . .

?>

  3 EXERCISE   

<?php

$clr3 
"rgba('percent for red', 'percent for green', 'percent for blue', 'alpha channel')";

// percent for... from 0% to 100%

// alpha channel from 0 to 1

$color3 = new ImagickPixel($clr3);

// . . . . . . . . . . . . . . . .

?>