(PECL imagick 2.0.0)
Imagick::polaroidImage — Simulates a Polaroid picture
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;
?>