Connecting Tech Pros Worldwide Forums | Help | Site Map

imagerotate() function doesn't work?

Mike
Guest
 
Posts: n/a
#1: Jul 17 '05
Hi all,
I've been trying to get imagerotate() working with PHP 4.4.3 and the
latest version of GDlib.
An error message is given saying the function is unrecognised.
Can anyone advise which configuration of PHP / GD is required to get
it to work?
Thanks!
Mike

Mike
Guest
 
Posts: n/a
#2: Jul 17 '05

re: imagerotate() function doesn't work?


Sorry, I meant PHP 4.3.3
M

mikekelly100@hotmail.com (Mike) wrote in message news:<3de80bff.0309150046.4c482130@posting.google. com>...[color=blue]
> Hi all,
> I've been trying to get imagerotate() working with PHP 4.4.3 and the
> latest version of GDlib.
> An error message is given saying the function is unrecognised.
> Can anyone advise which configuration of PHP / GD is required to get
> it to work?
> Thanks!
> Mike[/color]
Jon Kraft
Guest
 
Posts: n/a
#3: Jul 17 '05

re: imagerotate() function doesn't work?


Mike <mikekelly100@hotmail.com> wrote:
[color=blue]
> I've been trying to get imagerotate() working with PHP 4.4.3 and the
> latest version of GDlib.
> An error message is given saying the function is unrecognised.
> Can anyone advise which configuration of PHP / GD is required to get
> it to work?[/color]

Hi Mike,

Check your PHP installation - put a test php file on your server:

<?php
phpinfo();
?>

... check the ./configure string and information about GD.

You have to use PHP's bundled GD library to make use of this function
(configured: --with-gd).

HTH;
JOn
Mike
Guest
 
Posts: n/a
#4: Jul 17 '05

re: imagerotate() function doesn't work?


Jon Kraft <jon@jonux.co.uk> wrote in message news:<bk9dbm$qjs2i$1@ID-175424.news.uni-berlin.de>...[color=blue]
> Mike <mikekelly100@hotmail.com> wrote:
>[color=green]
> > I've been trying to get imagerotate() working with PHP 4.4.3 and the
> > latest version of GDlib.
> > An error message is given saying the function is unrecognised.
> > Can anyone advise which configuration of PHP / GD is required to get
> > it to work?[/color]
>
> Hi Mike,
>
> Check your PHP installation - put a test php file on your server:
>
> <?php
> phpinfo();
> ?>
>
> .. check the ./configure string and information about GD.
>
> You have to use PHP's bundled GD library to make use of this function
> (configured: --with-gd).
>
> HTH;
> JOn[/color]

Thanks Jon,
Very useful, that's helped me get to the bottom of it.
Mike
Closed Thread