Oki, so i got my basic thingy, the stand with the habboname and mission on it, but now i need to know how to put an image on top.
I have the coding and the image, but need the function to put it on...
anyone know?

Oki, so i got my basic thingy, the stand with the habboname and mission on it, but now i need to know how to put an image on top.
I have the coding and the image, but need the function to put it on...
anyone know?
You would use the imagecopy function.
http://us3.php.net/imagecopy
“two players, two sides.
one is light, one is dark.”
- John Locke
PHP Code:$i1 = imagecreatefromgif('i1.gif');
$i2 = imagecreatefromgif('i2.gif');
$x = 50;
$y = 50;
imagecopymerge($i1, $i2, $x, $y, 0, 0, imagesx($i2), imagesy($i2), 100);
Last edited by nets; 23-02-2007 at 12:50 PM.
kinda quit.
Want to hide these adverts? Register an account for free!