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