Saturday, November 22, 2025
HomeLanguagesPHP | Imagick oilPaintImage() Function

PHP | Imagick oilPaintImage() Function

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
  
// Create an Imagick object
$imagick = new Imagick(
  
// 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

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS