Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created April 15, 2013 18:40
Show Gist options
  • Save drewlesueur/5390308 to your computer and use it in GitHub Desktop.
Save drewlesueur/5390308 to your computer and use it in GitHub Desktop.
// alternate to imagecreatefrom...
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$image = curl_exec($ch);
curl_close($ch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment