Re: Error while rotating of an image: ErrorNoImageRotate
Posted: 19 Sep 2008, 16:02
Hi, it seems like your PHP on the server doesn't support the:
imageRotate function
( http://cz.php.net/manual/en/function.imagerotate.php )
e.g. for testing it you can run some php file on your server with following code:
imageRotate function
( http://cz.php.net/manual/en/function.imagerotate.php )
e.g. for testing it you can run some php file on your server with following code:
Code: Select all
if(!function_exists("imagerotate")) {
return 'ErrorNoImageRotate';
}