Skip to content

Instantly share code, notes, and snippets.

@addorange
Created June 19, 2013 09:24
Show Gist options
  • Save addorange/5812971 to your computer and use it in GitHub Desktop.
Save addorange/5812971 to your computer and use it in GitHub Desktop.
Direct download of an image in PHP
<?php
header('Content-type: image/png');
header('Content-Disposition: attachment; filename="' . $_GET['image'] . '"');
readfile($_GET['image']);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment