Código PHP:
session_start();
header ("Content-type: image/png");
// $row_Recordset1['guild']
$fondo = $row_fondo['archivo'];
if (!$_GET['fondo']){
$fondo="eclipse.png";
}
$im = imagecreatefrompng ('fondos/'.$fondo);
$im2 = imagecreatefrompng(''.$row_Recordset1['logo'].'');
imagecopyresized ( $im , $im2 , 3 , 1 , 0 , 0 , 18 , 18 , 23 , 23);
//imagecopy($im, $im2, 0, 0, 0, 0, 25, 25);
$color_fondo = ImageColorAllocate ($im, 240, 240, 240);
$color_texto = ImageColorAllocate ($im, 254, 254, 254);
ImageString ($im, 10, 35, 3, $row_Recordset1['nombre'], $color_texto);
ImageString ($im, 10, 170, 3,$row_Recordset1['job'], $color_texto);
ImageString ($im, 10, 315, 3,$row_Recordset1['lvl'], $color_texto);
ImagePng ($im);
alguien me puede ayudar?