
<?php
array public static Imagick::getQuantumDepth();
?>
RANDOMIZED COLOR Each new run, a new color is shown. | |||
| rgb code | hexadecimal | color | QUANTUM DEPHT |
| 160, 182, 08 | #a0b608 | DephtLong = 16 DephtString = Q16 | |
| ed48 | |||
EXERCISE
<?php
$file1 = PATH2IMGW . '/jpg/3.jpg';
$imagick = new Imagick($file1);
$imagick->getImageBlob();
$qtdepht = $imagick->getQuantumDepth();
echo 'Quantum Depht<pre>';
print_r($qtdepht);
echo '</pre>';
?>