Código PHP:
function texto_imagen ($texto, $ruta_imagen)
{
// Establecer el tipo de contenido
header('Content-Type: image/png');
// Crear la imagen
$im = imagecreatetruecolor(400, 30);
$imagen = imagecreatefromjpeg($ruta_imagen);
$negro = ImageColorAllocate($imagen, 0, 0, 0);
$fuente = 'arial.ttf';
imagettftext($imagen, 40, 0, 20, 340, $negro,$fuente,$dia);
imagepng($imagen);
imagedestroy($imagen);
}
Código PHP:
echo "<td colspan=\"2\">"; <IMG SRC="" . texto_imagen($texto,$ruta) . "\" WIDTH=310 HEIGHT=180 BORDER=0 ALT=\"vivienda\"> ";
echo "</td>";
Como lo puedo hacer? Gracias de antemano