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>
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
0