Open In App

PHP | Imagick oilPaintImage() Function

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::oilPaintImage() function is an inbuilt function in PHP which is used to simulates an oil painting. This function applies a special effect filter that simulates an oil painting. This function replaces each pixel by the most frequent color occurring in a circular region defined by radius. Syntax:
bool Imagick::oilPaintImage( $radius )
Parameters: This function accepts a single parameter $radius. It is used to set the radius of the circular neighborhood. Return Value: This function returns True on success. Below program illustrates the Imagick::oilPaintImage() function in PHP: Program: php
<?php

// Create an Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');

// Use oilPaintImage function
$imagick->oilPaintImage(5);

header("Content-Type: image/jpg");

// Display the output image
echo $imagick->getImageBlob();
?>
Output: oil paint image Reference: http://php.net/manual/en/imagick.oilpaintimage.php

Next Article
Practice Tags :

Similar Reads