Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to save an image from a php URL to my PC. Let's say I have a page http://example.com/image.php holding a single "flower" image, nothing else. How can I save this image from URL with a new name (using PHP)? Please help.

share|improve this question

8 Answers

up vote 211 down vote accepted

If you have allow_url_fopen set to true:

$url = 'http://example.com/image.php';
$img = '/my/folder/flower.gif';
file_put_contents($img, file_get_contents($url));

Else use cURL:

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
share|improve this answer
Thanks bro, your code help me to solve the problem. But could u pls help me to make the script automated .I mean when a new gif image come to the url (“example.com/image.php”) then our script automatically fetch the new image and store it to my directory? – riad Apr 7 '09 at 8:26
12  
And how do you know, that the new image "came"? – vartec Apr 7 '09 at 8:37
1  
I think riad means using a $_GET variable containing the URL of the image http://example.com/fetch-image.php?url=http://blabla.com/flower.jpg. In the case of this example, you could just call $_GET['url'] in your PHP script, like so: $ch = curl_init($_GET['url']);. – Mathias Bynens Nov 29 '09 at 13:04
I'm curious, if the type of image being generated by the php varies, can you dynamically set the saved image type? How do you tell the type of the generated image? – andrew Jan 18 '11 at 21:23
@andrew: using magic. en.wikipedia.org/wiki/Magic_number_(programming) – vartec Jan 19 '11 at 9:04
show 2 more comments
copy('http://example.com/image.php', 'local/folder/flower.jpg');
share|improve this answer
9  
Extremely elegant (requires allow_url_fopen). – michaelc Aug 24 '11 at 15:56
This doesn't keep PNG Transparancy – AlexMorley-Finch May 22 '12 at 11:38
@AlexMorley-Finch are you sure you are not commenting in the wrong place? Neither the question nor any of the answers here seem to have anything with png transparency. Otherwise, if you can provide an example, we can go on from there. – Halil Özgür May 22 '12 at 11:45
   
I wasnt having a go, just adding it so if any users come to this page in the future, they will see :) It is however a very elegant solution – AlexMorley-Finch May 22 '12 at 11:59
9  
Please ignore my comments, this function works perfectly with transparancy. I had my headers hard-coded as image/jpeg. – AlexMorley-Finch May 22 '12 at 12:10
show 2 more comments
$content = file_get_contents('http://example.com/image.php');
file_put_contents('/my/folder/flower.jpg', $content);
share|improve this answer
The page is holding an animated gif image. A file is stored into the folder as flower.gif .But it is blank.No image show.any solution? – riad Apr 7 '09 at 7:07
Turn on error_reporting(E_ALL|E_STRICT) and check the return value of file_get_contents(), then you should get a reasonable error message. – soulmerge Apr 7 '09 at 7:12
Perhaps the site admin has forbidden outside referrals. In that case you can try stream_context_create() and set the appropriate HTTP headers. us2.php.net/manual/en/function.stream-context-create.php – Calvin Apr 7 '09 at 7:18
urlencode('example.com/image.php') == 'http%3A%2F%2Fexample.com%2Fimage.php', obviously not what you want. Also file is binary, proper flag needs to be set. – vartec Apr 7 '09 at 7:19
1  
Bit of an old thread... but don't forget file permissions for the directory you are saving into. Just wasted ten minutes forgetting the obvious. – Paul Nov 23 '10 at 9:28
show 3 more comments

Here you go, the example saves the remote image to image.jpg.

function save_image($inPath,$outPath)
{ //Download images from remote server
    $in=    fopen($inPath, "rb");
    $out=   fopen($outPath, "wb");
    while ($chunk = fread($in,8192))
    {
        fwrite($out, $chunk, 8192);
    }
    fclose($in);
    fclose($out);
}

save_image('http://www.someimagesite.com/img.jpg','image.jpg');
share|improve this answer
The guys url is example.com/image.php. Notice that it is a php generated image an not a simple jpeg. – andrew Jan 18 '11 at 21:14
5  
How is the generation of the image or the files extension at all relevant to the question? – Sam152 Jan 19 '11 at 10:33

I wasn't able to get any of the other solutions to work, but I was able to use wget:

$tempDir = '/download/file/here';
$finalDir = '/keep/file/here';
$imageUrl = 'http://www.example.com/image.jpg';

exec("cd $tempDir && wget --quiet $imageUrl");

if (!file_exists("$tempDir/image.jpg")) {
    throw new Exception('Failed while trying to download image');
}

if (rename("$tempDir/image.jpg", "$finalDir/new-image-name.jpg") === false) {
    throw new Exception('Failed while trying to move image file from temp dir to final dir');
}
share|improve this answer

Vartec's answer with cURL didn't work for me. It did, with a slight improvement due to my specific problem.

e.g.,

When there is a redirect on the server (like when you are trying to save the facebook profile image) you will need following option set:

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

The full solution becomes:

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
share|improve this answer
thanks zuul, really & stoe really found helpful after more search or spend time – Rakesh Sharma Dec 13 '12 at 11:33

Create a folder named images located in the path you are planning to place the php script you are about to create. Make sure it has write rights for everybody or the scripts won't work ( it won't be able to upload the files into the directory).

share|improve this answer
$img_file='http://www.somedomain.com/someimage.jpg'

$img_file=file_get_contents($img_file);

$file_loc=$_SERVER['DOCUMENT_ROOT'].'/some_dir/test.jpg';

$file_handler=fopen($file_loc,'w');

if(fwrite($file_handler,$img_file)==false){
    echo 'error';
}

fclose($file_handler);
share|improve this answer

protected by Community Mar 14 '12 at 19:18

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.