How can get an image from a 301 redirect download link in PHP?
I'm trying to download this image with PHP to edit it with GD. I found many solutions for image links, but this one is a download link. Edit: $curl = curl_init("http://minecraft.net/skin/Notch.png"); $bin = curl_exec($curl); curl_close($curl); $img = @imagecreatefromstring($bin); This is my current code. It displays "301 Moved Permanently". Are there CURLOPTs I have to set? $curl = curl_init("http://minecraft.net/skin/Notch.png"); // Moved? Fear not, we'll chase it! curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); // Because you want the result as a string curl_setopt($curl, CURLOPT