Imagick::shadowImage

(PECL imagick 2.0.0)

Imagick::shadowImageSimulates an image shadow

Описание

bool Imagick::shadowImage ( float $opacity , float $sigma , int $x , int $y )

Simulates an image shadow.

Список параметров

opacity

sigma

x

y

Возвращаемые значения

В случае успешной работы возвращает TRUE.

Коментарии

<?php
/* Read the image into the object */
$im = new Imagick'a.jpg' );
$im->setImageFormat("png");
 
/* Make the image a little smaller, maintain aspect ratio */
$im->thumbnailImage200null );
 
/* Clone the current object */
$shadow $im->clone();
 
/* Set image background color to black
        (this is the color of the shadow) */
$shadow->setImageBackgroundColor( new ImagickPixel'black' ) );
 
/* Create the shadow */
$shadow->shadowImage8035);
 
/* Imagick::shadowImage only creates the shadow.
        That is why the original image is composited over it */
$shadow->compositeImage$imImagick::COMPOSITE_OVER0);
 
/* Display the image */
header"Content-Type: image/jpeg" );
echo 
$shadow;
?>
2009-07-27 13:43:21
http://php5.kiev.ua/manual/ru/imagick.shadowimage.html

    Поддержать сайт на родительском проекте КГБ