Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16235 программистов и 1779 роботов. Сейчас ищут 1762 программиста ...
Imagick::oilPaintImage - Simulates an oil painting
Вернуться к: Imagick
Imagick::oilPaintImage
(PECL imagick 2.0.0)
Imagick::oilPaintImage — 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.
Список параметров
-
radius
-
The radius of the circular neighborhood.
Возвращаемые значения
В случае успешной работы возвращает TRUE
.
Примеры
Пример #1 Imagick::oilPaintImage()
<?php
function oilPaintImage($imagePath, $radius) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->oilPaintImage($radius);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
Вернуться к: Imagick