
<?php
array public static Imagick::getQuantumRange();
?>
RANDOMIZED COLOR Each new run, a new color is shown. | |||
| rgb code | hexadecimal | color | QUANTUM RANGE |
| 171, 244, 200 | #abf4c8 | RangeLong = 65535 RangeString = 65535 | |
| ed48 | |||
EXERCISE
<?php
$file1 = PATH2IMGW . '/jpg/3.jpg';
$imagick = new Imagick($file1);
$imagick->getImageBlob();
$qtrange = $imagick->getQuantumRange();
echo 'Quantum Range<pre>';
print_r($qtrange);
echo '</pre>';
?>