3 AM
> To: Gerard Samuel
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] IMAGE CREATE() header problem
> Importance: High
>
> Thanks for the advice.
> I found out there I shouldn't put the script in between any html tags
at
> all.
>
> Now my question is:
>
>
Thanks for the advice.
I found out there I shouldn't put the script in between any html tags at all.
Now my question is:
What if we want to insert image which is generated by the php in the table?
thanks
Gerard Samuel wrote:
> Double check your file for the whitspace like the others have stat
Double check your file for the whitspace like the others have stated.
I tried your example and had no problems with it...
Dani wrote:
>Hi again,
>
>I have got this script :
>//setup image
>$height = 200;
>$width = 200;
>
>$im = ImageCreate($width,$height);
>$white = ImageColorAllocate($im, 255,
Thanks Miguel!
I have checked everything but it seems there aren't any blank space but I
still get the error message.
Miguel Cruz wrote:
> On Sat, 25 May 2002, Dani wrote:
> > I have got this script :
> > > //setup image
> > $height = 200;
> > $width = 200;
> >
> > $im = ImageCreate($width,$
Something is being output in index.php on Line 10. That's causing the
headers to fail. Check for whitespace.
---John Holmes...
> -Original Message-
> From: Dani [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 24, 2002 11:27 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] IMAGE CREATE() header
On Sat, 25 May 2002, Dani wrote:
> I have got this script :
> //setup image
> $height = 200;
> $width = 200;
>
> $im = ImageCreate($width,$height);
> $white = ImageColorAllocate($im, 255, 255, 255);
> $black = ImageColorAllocate($im, 0, 0, 0);
>
> //Draw on image
> ImageFill($im, 0, 0, $black);
6 matches
Mail list logo