Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/07/2010, 23:28
alvaro0022
 
Fecha de Ingreso: octubre-2009
Ubicación: Santa Fe
Mensajes: 206
Antigüedad: 14 años, 6 meses
Puntos: 7
Ayuda script redimensionar imagenes

Hola a todos.

Aqui en el foro encontre este script para redimensionar imagenes. Funciona perfecto.

Código PHP:
<?php
$anchura
=180;
$hmax=180;
$nombre=basename($_GET['imagen']);
$datos getimagesize($nombre);
if(
$datos[2]==1){$img = @imagecreatefromgif($nombre);}
if(
$datos[2]==2){$img = @imagecreatefromjpeg($nombre);}
if(
$datos[2]==3){$img = @imagecreatefrompng($nombre);}
$ratio = ($datos[0] / $anchura);
$altura = ($datos[1] / $ratio);
if(
$altura>$hmax){$anchura2=$hmax*$anchura/$altura;$altura=$hmax;$anchura=$anchura2;}
$thumb imagecreatetruecolor($anchura,$altura);
imagecopyresampled($thumb$img0000$anchura$altura$datos[0], $datos[1]);
if(
$datos[2]==1){header("Content-type: image/gif"); imagegif($thumb);}
if(
$datos[2]==2){header("Content-type: image/jpeg");imagejpeg($thumb);}
if(
$datos[2]==3){header("Content-type: image/png");imagepng($thumb); }
imagedestroy($thumb);
?>
Código:
<img src='redimensionar.php?imagen=imagen1.jpg'>
Aunque la imagen que devuelve sale con el nobre que le doy al script. En este caso redimensionar. Me gustaria que la imagen que devuelva tenga el nombre original de la imagen que en este caso es imagen1.jpg.

Alguien sabe como hacer esto?
__________________
Fondos de pantalla
Juegos Gratis