Eu folosesc urmatorul script pentru download poze:
Cod:
session_cache_limiter('none');
session_start();
$file = 'calea catre poza';
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Transfer-Encoding: binary");
header('Content-Description: File Transfer');
header('Content-Type: image');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Length: '. filesize($file));
readfile($file);