From:             robotech at mixmail dot com
Operating system: Linux
PHP version:      4CVS-2004-07-06 (stable)
PHP Bug Type:     Unknown/Other Function
Bug description:  GD had problems with "include" keyword

Description:
------------
I'm using GD to generate a dinamic image showing a chart.
It sees that there's and error when I try to use the keyword "include". 
I also try to use an empty file using the keyword "include" and the result
it's the same.

Reproduce code:
---------------
/*************/
/* chart.php */
/*************/
Header ("Contect-type: image/jpeg");
include ("function.phtml"); //only a group of functions. They all work.
$imgW = 500; $imgH = 312;
$img = ImageCreate($imgW,$imgH);
$black = ImageColorAllocate($img,0,0,0);
$white = ImageColorAllocate($img,255,255,255);
ImageFilledRectangle($img,0,0,$imgW,$imgH,$white);
$font = 2;
$txt = "Hello, dude!";
ImageString($img,$font,100,100,$txt,$black);
ImageJPEG($img);
ImageDestroy($img);


Expected result:
----------------
If would like to reuse a same code inside function.phtml in all my dinamic
charts.

Actual result:
--------------
It isn't working. Only works when I exclude the include.

-- 
Edit bug report at http://bugs.php.net/?id=29033&edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29033&r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29033&r=trysnapshot5
Fixed in CVS:               http://bugs.php.net/fix.php?id=29033&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=29033&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=29033&r=needtrace
Need Reproduce Script:      http://bugs.php.net/fix.php?id=29033&r=needscript
Try newer version:          http://bugs.php.net/fix.php?id=29033&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=29033&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=29033&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=29033&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=29033&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=29033&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29033&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=29033&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=29033&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=29033&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29033&r=float

Reply via email to