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