Imagick::chopImage> <Imagick::borderImage
Last updated: Fri, 30 Dec 2011

Imagick::charcoalImage

(PECL imagick 2.0.0)

Imagick::charcoalImageSimulates a charcoal drawing

Descrição

bool Imagick::charcoalImage ( float $radius , float $sigma )

Simulates a charcoal drawing.

Parâmetros

radius

The radius of the Gaussian, in pixels, not counting the center pixel

sigma

The standard deviation of the Gaussian, in pixels

Valor Retornado

Retorna TRUE em sucesso.



User Contributed Notes
Imagick::charcoalImage
DJ Mike
12-Apr-2011 02:52
<?php
header
("Content-type: image/jpeg");
$image = new Imagick("opossum.jpg");
$image->charcoalImage(1,2);
echo
$image;
?>

Imagick::chopImage> <Imagick::borderImage
Last updated: Fri, 30 Dec 2011