10/09/2002, 03:39
|
| | Fecha de Ingreso: septiembre-2002 Ubicación: Burgos
Mensajes: 66
Antigüedad: 22 años, 2 meses Puntos: 0 | |
Re: AÑadir Imagen Por si os interesa, también lo he modificado un poco para que se ajuste a un tamaño máximo de 200*150. Aquí os dejo el código.
function CambiarFoto() {
var lafoto = new Image();
lafoto.src = document.xyz.Imagen.value;
if (lafoto.width>lafoto.height){
if (lafoto.width>200){
lafoto.height=((lafoto.height*20000) / lafoto.width)/100;
lafoto.width=200;
}
if (lafoto.height>150){
lafoto.width=((lafoto.width*15000)/ lafoto.height)/100;
lafoto.height=150;
}
}
else{
if (lafoto.width<lafoto.height){
if (lafoto.height>200){
lafoto.width=((lafoto.width*20000)/ lafoto.height)/100;
lafoto.height=200;
}
if (lafoto.width>150){
lafoto.height=((lafoto.height*15000)/ lafoto.width)/100;
lafoto.width=150;
}
}
else{
if (lafoto.width>200){
lafoto.width=200;
lafoto.height=200;
}
}
}
document.xyz.Foto.src = lafoto.src;
}
Un saludo y gracias. ;)
"Tengo tan buena memoria como buen olvido" |