Author | PHP image help | Member

Posts: Location:
Joined: 01.01.70 Rank: Guest | | Hey guys,
I am using PHP and the GD library to create a dynamic profile badge. The badge is made up of an image as a background, and has text on it about the user. My problem is that when I add the avatar picture, all the text and other graphics disappear...
$im is my background image
$avstring contains the avatar as a string
Here is a code snippit:
Code
$av = imagecreatefromstring($avstring);
imagecopy($im, $av, 15, 15, 0, 0, 100, 100);
$black = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 5, 155, 35, "Name: ".$usr["Name"], $black);
imagestring($im, 5, 155, 55, "Pub: ".$usr["pub"], $black);
I then render the image, and the avatar loads fine, but my text is gone...
Any ideas?
Cheers
|
 |
Author | RE: PHP image help | Member

Posts: Location:
Joined: 01.01.70 Rank: Guest | | Solved, had to put the imagecopy command at the end, just before rendering.
B)
|
 |
|