![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/05/2004, 14:35
|
| | Fecha de Ingreso: diciembre-2003
Mensajes: 1.583
Antigüedad: 21 años, 1 mes Puntos: 13 | |
imagecopyresized($new_img_source, $image, 0, 0, 0, 0, $img_w, $img_h, $new_img_w, $new_img_h);
eso es lo que tienes.... pero tienes al reves los parametros para las dimensiones:
imagecopyresized($new_img_source, $image, 0, 0, 0, 0, $new_img_w, $new_img_h,$img_w, $img_h);
debe ir en ese orden: ancho_nuevo, alto_nuevo,ancho_original,alto_original |