Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/03/2005, 16:19
guja
Invitado
 
Mensajes: n/a
Puntos:
Exclamacin Ayuda con esto por favor. Tengo problemas al levantar una imgen desde un archivo

Otro problemita, estoy usando el siguiente cdigo:

<?php
function createim($urlim){
header("Content-type: image/jpeg");
$im = imagecreatefromjpeg("images/".$urlim);
imagejpeg($im);
imagedestroy($im);
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<div id="Layer1" style="position:absolute; width:200px; height:115px; z-index:1; left: 339px; top: 86px;"><?php createim("welcome_head.jpg"); ?>
</div>
<form name="form1" method="post" action="">
<input type="submit" name="Submit" value="Enviar">
</form>
</body>
</html>

pero al ejecutarlo no me carga la imagen, me carga lo siguiente:

JFIF>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality C    $.' ",#(7),01444'9=82<.342C  2!!222222222222222222222222222222222222222222222 22222F" ĵ}!1AQa"q2#BR$3 br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz  ĵw!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvw xyz ?( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (TRXs@vn69 ːAEDđZDK2ms x&7 ʀ,Q\n<Ia"Vl_[YIqtiǖ$*EG,[dDVv{{-oq8&7 @QU]]AFhIo 4SUՐ2*FAU, ݼIoʀ-QEQEQEQEQEQEU fj5mgN?Η['sũ[4.H#9l}Oץ_uZ_5QH

me est faltando algo??

ltima edicin por guja; 30/03/2005 a las 16:39