Error distortImage with Mikko example
Posted: 2009-04-21T14:07:04-07:00
Hello,
I have a problem with the function distortImage.
In fact, I just copied / pasted the example below on the mikko's blog and I have this error :
Fatal error: Uncaught exception 'ImagickException' with message 'invalid argument for option PerspectiveProjection : 'Needs 8 coefficient values'' in ...
Thank you for your help.
I have a problem with the function distortImage.
In fact, I just copied / pasted the example below on the mikko's blog and I have this error :
Fatal error: Uncaught exception 'ImagickException' with message 'invalid argument for option PerspectiveProjection : 'Needs 8 coefficient values'' in ...
Code: Select all
<?php
/* Create new object */
$im = new Imagick();
/* Create new checkerboard pattern */
$im->newPseudoImage(100, 100, "pattern:checkerboard");
/* Set the image format to png */
$im->setImageFormat('png');
/* Fill background area with transparent */
$im->setImageVirtualPixelMethod(Imagick::VIRTUALPIXELMETHOD_TRANSPARENT);
/* Activate matte */
$im->setImageMatte(true);
/* Control points for the distortion */
$controlPoints = array( 10, 10,
10, 5,
10, $im->getImageHeight() - 20,
10, $im->getImageHeight() - 5,
$im->getImageWidth() - 10, 10,
$im->getImageWidth() - 10, 20,
$im->getImageWidth() - 10, $im->getImageHeight() - 10,
$im->getImageWidth() - 10, $im->getImageHeight() - 30);
/* Perform the distortion */
$im->distortImage(Imagick::DISTORTION_PERSPECTIVE, $controlPoints, true);
/* Ouput the image */
header("Content-Type: image/png");
echo $im;
?>