<?php
$image = new imagick( "opossum.jpg" );
$image->setimagebackgroundcolor("#fad888");
$image->gaussianBlurImage( 5, 5 );
header( "Content-Type: image/jpeg" );
echo $image;
?>
<?php
$image = new imagick( "opossum.jpg" );
$image->gaussianBlurImage( 10, 10, imagick::CHANNEL_RED );
header( "Content-Type: image/jpeg" );
echo $image;
?>
|
|
|