imagick.oilpaint.inc in Imagick 7
File
effects/imagick.oilpaint.incView source
<?php
/**
* Creates an oil painted image
*
* @param $image
* An image object. The $image->resource value will be modified by this call.
* @param $radius
* The threshold of the oilpaint effect.
* @return
* TRUE or FALSE, based on success.
*/
function image_imagick_oilpaint(stdClass $image, $radius) {
return $image->resource
->oilPaintImage($radius);
}
/**
* Implements the imagick oilpaint effect.
*
* @param $image
* An image object
* @param array $data
* The data passed from the form
*/
function imagick_oilpaint($image, $data = array()) {
image_toolkit_invoke('oilpaint', $image, $data);
}
/**
* Settings form for the imagick oilpaint effect.
*
* @param $action
* The saved action form parameters.
*/
function imagick_oilpaint_form($data) {
$data = array_merge(imagick_oilpaint_defaults(), (array) $data);
$form['radius'] = array(
'#type' => 'textfield',
'#title' => t('Radius'),
'#description' => t('The radius of the oilpaint effect.'),
'#default_value' => $data['radius'],
'#size' => 3,
);
return $form;
}
/**
* Returns the default settings of this effect.
*/
function imagick_oilpaint_defaults() {
return array(
'radius' => '2',
);
}
Functions
Name | Description |
---|---|
image_imagick_oilpaint | Creates an oil painted image |
imagick_oilpaint | Implements the imagick oilpaint effect. |
imagick_oilpaint_defaults | Returns the default settings of this effect. |
imagick_oilpaint_form | Settings form for the imagick oilpaint effect. |