
<?php
int public static Imagick::getQuantum();
?>
RANDOMIZED COLOR Each new run, a new color is shown. | |||
| rgb code | hexadecimal | color | QUANTUM |
| 188, 79, 210 | #bc4fd2 | 65535 | |
| ed48 | |||
EXERCISE
<?php
$file1 = PATH2IMGW . '/jpg/3.jpg';
$imagick = new Imagick($file1);
$imagick->getImageBlob();
$quantum = $imagick->getQuantum();
echo 'Quantum = '. $quantum;
?>