Téléchargement d'images HD avec Php

Fermé
Bli55 Messages postés 9 Date d'inscription samedi 23 août 2008 Statut Membre Dernière intervention 25 août 2008 - 23 août 2008 à 14:40
 hkr4ver - 6 mai 2011 à 21:21
Bonjour,

Pour mon site, je force le téléchargement d'images HD avec un script Php.

L'image est téléchargé seulement celle-ci est découpée en trois parties qui ne sont pas correctement positionnées.

Voici mon script :


<?php

$img = $_GET['path']."/".$_GET['dir']."/".$_GET['name'];
$name = $_GET['name'];

header('Content-Transfer-Encoding: none');
header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename="'.$name.'"');
header('Content-Length: ' . filesize($img));
header('Expires: 0');

@readfile($img) OR die();

?>

Merci d'avance...
A voir également:

1 réponse

Bli55 Messages postés 9 Date d'inscription samedi 23 août 2008 Statut Membre Dernière intervention 25 août 2008 13
25 août 2008 à 08:55
Up
-3
demain revien
0