Log in

View Full Version : gd troubles as usual


AN-net
10-25-2004, 04:34 PM
ok well im trying to modify the fetch_avatar_url function so it will place text over a user's avatar but of course it isnt workin

here is the code:

if ($vboptions['usefileavatar'])
{
$preavaurl= "http://www.animationation.net/community/$vboptions[avatarurl]/avatar{$userid}_{$avatarinfo[avatarrevision]}.gif";
$preava= ImageCreateFromGif($preavaurl);
$colortext= imagecolorallocate($preava, 0, 0, 0);
ImageTTFText($preava, 6, 0, 1, 1, $colortext, "./arial.ttf", "BANNED!");
return "$vboptions[avatarurl]/avatar{$userid}_{$avatarinfo[avatarrevision]}.gif";
}
else
{
return "image.php?u=$userid&dateline=$avatarinfo[dateline]";
}


see the problem is its still showing the original avatar unedited, how can i achieve this?

Natch
10-25-2004, 04:36 PM
I don't see a line of code which output's the image to the server...

AN-net
10-25-2004, 06:00 PM
how would i do that? im still new at this>_<

AN-net
10-26-2004, 05:17 PM
bump

Natch
10-26-2004, 10:13 PM
If you wanted to look it up in the php.net manual, you would have found the following information (the following is my paraphrase):

Basically, you need to output the image either directly to the page (leave out the path statement) or to a file... or it is being created by ImageCreateFromGIF(), modified with ImageTTF(), then it vanishes after you create it when the page finishes loading...

Unless you know what the transparent colour using in the image is (and you can't detect that on the fly) your output image will not be transparent...

The following code would work for your "stored as a file" avatars, but for the database stored avatars you would require a database INSERT query to put the modified GIF image into the DB...
imagegif($preava,"./$vboptions[avatarurl]/avatar{$userid}_{$avatarinfo[avatarrevision]}.gif");Make sense?

Another way to do it would be to create a separat PHP script to create the image itself, then you can call a banned_img.php script if you are viewing a banned users avatar... that might suit better.

Ref: php.net - imagegif() (http://www.php.net/manual/en/function.imagegif.php)