I'm trying to distort an image in perspective via imagick php extension and I've got the following piece of code for doing this:
$controlPoints = array(
0,0, 0,0,
0,$height, 0,$height,
$width,0, $width,$perspective_wrap,
$width,$height, $width,$hps
);
$im1->setImageMatte(true);
//Distort the image -- In perspective with the matrix given above
$im1->distortImage(Imagick::DISTORTION_PERSPECTIVE, $controlPoints, true);
The image is distorting in perspective on a linux server but when I move the script on windows hosting it seems that the following error occurs:
Fatal error: Uncaught exception 'ImagickException' with message 'Can't read argument array'
Where the line is $im1->distortImage(Imagick::DISTORTION_PERSPECTIVE, $controlPoints, true);
Is there any way to make it work on both platforms?