PHP - explicacion imagenes

 
Vista:

explicacion imagenes

Publicado por Angel (4 intervenciones) el 28/06/2002 23:56:39
Hola:
me podria alguien explicar porque con php no veo la imagen y con img srs de HTML la veo .gracias.

<?php

Header("Content-type: image/png");

?>

<html>
<head>
<title>Imagini.</title>
</head>
<body bgcolor=#99cc78>
<BR><BR>

<?php

function CargarPNG ($NombreImg) {
$im = @imagecreatefrompng ($NombreImg); /* Intentar abrirla */

if (!$im) {
$im = imagecreate (150, 30);
$bgc = imagecolorallocate ($im, 255, 255, 255);
$tc = imagecolorallocate ($im, 0, 0, 0);
imagefilledrectangle ($im, 0, 0, 150, 30, $bgc);

imagestring ($im, 1, 5, 5, "Error loading $imgname", $tc);
}
else{
echo "ha fallito! ".date("h:i:s");
}
return $im;
}

;

echo "<CENTER><IMG SRC='".CargarPNG("http://localhost/pruebas/home.png")."' WIDTH='150' HEIGHT='90' BORDER='2' ></CENTER>";



//phpinfo();

?>

<BR><BR><BR><BR>
<IMG SRC="home.png" WIDTH="164" HEIGHT="94" BORDER=2 ALT="">

</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:explicacion imagenes

Publicado por Pedro Santana (132 intervenciones) el 29/06/2002 01:39:09
Date un vuelta por esta página:

http://php.weblogs.com/GD
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar