Note.This method is only available if Imagick was compiled for version 6.3.2 or higher.
Syntax: bool Imagick::polaroidImage ($properties, $angle)
Parameters:This function takes two parameters as above and described below:
- $properties:This parameter contains the Polaroid image property. Can be set to "ImagickDraw()" if property changes are ignored.
- $angle:This parameter contains the angle of the polaroid to rotate the entire image (with a border).
Return Value:This function returns True on success.
Original Image: Program:
// Create a new object
$image
=
new
Imagick (
’ https://media.engineerforengineer.org/wp-content/uploads/20190708094104/ g128-300x246.png ’
);
// Use the polaroidImage() function
$image
-> polaroidImage (
new
ImagickDraw(), 25);
// Image title
header (
’Content-type: image / png’
);
// Show the resulting image
echo
$image
;
?>
Output: