<?php
header("Content-type: image/jpeg");
$image = new Imagick("opossum.jpg");
# find max
$max = $image->getQuantumRange();
$max = $max[quantumRangeLong];
$image->randomthresholdImage( .6*$max, .4*$max );
echo $image;
?>
<?php
header("Content-type: image/jpeg");
$image = new Imagick("opossum.jpg");
# find max
$max = $image->getQuantumRange();
$max = $max[quantumRangeLong];
$image->randomthresholdImage( .4*$max, .6*$max );
echo $image;
?>
<?php
$image = new Imagick("opossum.jpg");
# find max
$max = $image->getQuantumRange();
$max = $max[quantumRangeLong];
$image->randomthresholdImage( .4*$max, .6*$max, imagick::CHANNEL_RED );
header("Content-type: image/jpeg");
echo $image;
?>
^