(PECL imagick 2.0.0)
Imagick::polaroidImage — Simulates a Polaroid picture
Simulates a Polaroid picture. 이 메쏘드는 Imagick을 ImageMagick 6.3.2 이상으로 컴파일 했을 때만 사용할 수 있습니다.
The polaroid properties
The polaroid angle
성공시에 TRUE를 반환합니다.
Example #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;
?>