[RESOLU] GD : renommer une image

GD : renommer une image [RESOLU] - PHP - Programmation

Marsh Posté le 01-03-2006 à 14:31:20    

Bonjour, avec la librairie GD je gere mes images dans un fichier php : image.php5.
Je voudrais lorsqu'on telecharge une image que son nom soit "nom_image".png et non pas le nom du fichier php : image.php5.png  :non:  
 
dans image.php5, je cree une image :

Code :
  1. header("Content-type: image/png" );
  2. $destination = imagecreatefromjpeg($img);
  3. imagepng($destination);
  4. imagedestroy($destination);


 
Une idee ?
Merci beaucoup  :jap:


Message édité par fabs2b le 02-03-2006 à 20:05:27
Reply

Marsh Posté le 01-03-2006 à 14:31:20   

Reply

Marsh Posté le 01-03-2006 à 14:43:35    

essaye avec un header Content-Disposition
par exemple :

Code :
  1. header('Content-Disposition: inline; filename=nom_image.png"');

Reply

Marsh Posté le 01-03-2006 à 14:49:23    

soju a écrit :

essaye avec un header Content-Disposition
par exemple :

Code :
  1. header('Content-Disposition: inline; filename=nom_image.png"');



 
 
Ca marche ! Merci ! Ca faisait 1 heure que je cherchais.
T'es trop fort  :D  
Merci  :hello:

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed