Re: [PHP] Image background bleeding through text

2001-03-24 Thread almir

check if the area you are filling with another colour is  realy closed,
maybe send a url to that it could help
almir


""Kevin Rose"" [EMAIL PROTECTED] schrieb im Newsbeitrag
000c01c0b3b7$87a071c0$8105a8c0@kevin">news:000c01c0b3b7$87a071c0$8105a8c0@kevin...
Hello,

I am using GD v. 1.8.3, freetype 1.3.1 and php 4.0.3.p1.  I am having a
problem with some of my background color bleeding through my font/text when
I create a new image with ImageTTFText.  Specifically I want my text to be
pure white (255,255,255), but it is not appearing that way on my output
image.

Here is the code I am using:

 $fontColor = ImageColorAllocate ($im,255,255,255);
 ImageTTFText($im,$fontSize,0,$fontX,$fontY,$fontColor,$fontFile,$fontText);

Has anyone else experienced this?

Thank you,
Kevin




-- 
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]




[PHP] Image background bleeding through text

2001-03-23 Thread Kevin Rose

Hello,

I am using GD v. 1.8.3, freetype 1.3.1 and php 4.0.3.p1.  I am having a problem with 
some of my background color bleeding through my font/text when I create a new image 
with ImageTTFText.  Specifically I want my text to be pure white (255,255,255), but it 
is not appearing that way on my output image.

Here is the code I am using:

 $fontColor = ImageColorAllocate ($im,255,255,255);
 ImageTTFText($im,$fontSize,0,$fontX,$fontY,$fontColor,$fontFile,$fontText);

Has anyone else experienced this?

Thank you,
Kevin