i am getting similar errors when trying to run a script that requires GD.
It is installed, supposedly but i get:
Call to unsupported or undefined function imagettfbbox()
any and all advice is helpful
thanks
dale
On Tue, 27 Feb 2001, Helmut Ott wrote:
> Hi,
> hopefully somebody can help to solve this miracle.
>
> My phpinfo
>
> My provider (and phpinfo) says GD <=1.62 is installed.
> But when I run scripts using the php-imagefunctions
> that require gd like
> <?php
> Header ("Content-type: image/jpeg");
> $im = imagecreate (400, 30);
> $black = ImageColorAllocate ($im, 0, 0, 0);
> $white = ImageColorAllocate ($im, 255, 255, 255);
> ImageTTFText ($im, 20, 0, 10, 20, $white, "/path/arial.ttf",
> "Testing... Omega: Ω");
> ImageJPEG ($im);
> ImageDestroy ($im);
> ?>
> The lines containing the functions like createImage(), or ImagecolorAllocate()
>return error messages.
> How can I find out without doubt whether the functions work properly or not?
> Every advice is appreciated.
>
> Helmut
>
>
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]