php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #3536 PHP reports function imagecreate() as "unsupported or undefined"
Submitted: 2000-02-20 08:26 UTC Modified: 2000-08-19 12:07 UTC
From: aka at myself dot com Assigned:
Status: Closed Package: Misbehaving function
PHP Version: 3.0.12 OS: Solaris (i86)
Private report: No CVE-ID: None
 [2000-02-20 08:26 UTC] aka at myself dot com
I run the code
===========================
<?php
// test of image create operation
//
Header(  "Content-type:  image/gif");
    $str="this is a test of imagecreate";
    $len=StrLen($str);
    $im=ImageCreate($len*6,16);          
    $black = ImageColorAllocate($im, 0,0,0);
    $red = ImageColorAllocate($im,255,0,0);
    ImageFill($im,0,0,$red);             
    ImageString($im,2,0,0,$str,$black);  
    ImageGif($im);
    ImageDestroy($im);
    exit;
?>
================================================

On my win32 apache I get a nice little read box
On Solaris apache I get the error

<br>
<b>Fatal error</b>:  Call to unsupported or undefined function imagecreate() in <b>/kunder/clickitdk/htdocs/fanbase/image_test.php3</b> 
on line <b>7</b><br>

=================================================
My solaris version runs in many other examples.

compile list
I did not compile the program my web hotel did,
==================================================
php3.ini file


==================================================


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-02-23 14:47 UTC] sas at cvs dot php dot net
You probably don't have gd support configured. How did you configure PHP?
 [2000-08-19 12:07 UTC] joey@php.net
No feedback since Feb.
GD works fine on Solaris i86 here...
Most likely needs to rebuild PHP
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri May 17 02:01:32 2024 UTC