(PECL imagick 2.0.0)
Simulates an oil painting
bool Imagick::oilPaintImage ( float $radius )
Applies a special effect filter that simulates an oil painting. Each pixel is replaced by the most frequent color occurring in a circular region defined by radius.
Parameters:
radius
The radius of the circular neighborhood.
Returns:
Returns TRUE
on success.
Examples:
Imagick::oilPaintImage()
1 2 3 4 5 6 7 8 9 | <?php function oilPaintImage( $imagePath , $radius ) { $imagick = new \Imagick( realpath ( $imagePath )); $imagick ->oilPaintImage( $radius ); header( "Content-Type: image/jpg" ); echo $imagick ->getImageBlob(); } ?> |
Please login to continue.