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