Imagick::polaroidImage

(PECL imagick 2, PECL imagick 3)

Imagick::polaroidImageSimulates a Polaroid picture

Описание

public Imagick::polaroidImage ( ImagickDraw $properties , float $angle ) : bool

Simulates a Polaroid picture. Этот метод доступен, если Imagick был скомпилирован с версией ImageMagick 6.3.2 или старше.

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

properties

The polaroid properties

angle

The polaroid angle

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

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

Примеры

Пример #1 A Imagick::polaroidImage() example

An example of using Imagick::polaroidImage()

<?php
/* Create the object */
$image = new Imagick('source.png');

/* Set the opacity */
$image->polaroidImage(new ImagickDraw(), 25);

/* output the image */
header('Content-type: image/png');
echo 
$image;

?>