Copy Image from Remote Server Over HTTP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T02:53:39Z http://stackoverflow.com/feeds/question/909374 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http 3 Copy Image from Remote Server Over HTTP GiladG 2009-05-26T07:27:15Z 2009-06-28T00:47:14Z <p>I am looking for a simple way to import/copy images from remote server to a local folder using PHP. I have no FTP access to the server, but all remote images can be accessed via HTTP (i.e. <a href="http://www.mydomain.com/myimage.jpg" rel="nofollow">http://www.mydomain.com/myimage.jpg</a>).</p> <p>Example use: A user wishes to add an image to his profile. The image already exists on the web and the user provides with a direct URL. I do not wish to hotlink the image but to import and serve from my domain.</p> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909378#909378 0 Answer by Peter Stuifzand for Copy Image from Remote Server Over HTTP Peter Stuifzand 2009-05-26T07:28:33Z 2009-05-26T07:41:13Z <p>Use a GET request to download the image and save it to a web accessible directory on your server.</p> <p>As you are using PHP, you can use <code>curl</code> to download files from the other server.</p> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909382#909382 0 Answer by joshcomley for Copy Image from Remote Server Over HTTP joshcomley 2009-05-26T07:29:55Z 2009-05-26T07:29:55Z <p>Assuming you're using .NET, which you may not be:</p> <pre><code>WebClient wc = new WebClient(); byte[] data = wc.DownloadData(path); MemoryStream ms = new MemoryStream(data); return (Bitmap)Bitmap.FromStream(ms); </code></pre> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909415#909415 1 Answer by Machine for Copy Image from Remote Server Over HTTP Machine 2009-05-26T07:39:30Z 2009-05-26T07:39:30Z <p>It's extremely simple using <a href="http://se2.php.net/file%5Fget%5Fcontents" rel="nofollow">file_get_contents</a>. Just provide the url as the first parameter.</p> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909426#909426 1 Answer by gs for Copy Image from Remote Server Over HTTP gs 2009-05-26T07:43:00Z 2009-05-26T07:43:00Z <p>You've got about these four possibilities:</p> <ul> <li><p><a href="http://www.php.net/manual/en/features.remote-files.php" rel="nofollow">Remote files</a>. This needs <code>allow_url_fopen</code> to be enabled in php.ini, but it's the easiest method.</p></li> <li><p>Alternatively you could use <a href="http://www.php.net/manual/en/book.curl.php" rel="nofollow">cURL</a> if your PHP installation supports it. There's even an <a href="http://www.php.net/manual/en/curl.examples-basic.php" rel="nofollow">example</a>.</p></li> <li><p>And if you really want to do it manually use the <a href="http://www.php.net/manual/en/book.http.php" rel="nofollow">HTTP module</a>.</p></li> <li><p>Don't even try to <a href="http://www.php.net/manual/en/book.sockets.php" rel="nofollow">use sockets directly</a>.</p></li> </ul> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909429#909429 0 Answer by Oli for Copy Image from Remote Server Over HTTP Oli 2009-05-26T07:43:46Z 2009-05-26T07:43:46Z <p>Here's the most basic way:</p> <pre><code>$url = "http://other-site/image.png"; $dir = "/my/local/dir/"; $rfile = fopen($url, "r"); $lfile = fopen($dir . basename($url), "w"); while(!feof($url)) fwrite($lfile, fread($rfile, 1), 1); fclose($rfile); fclose($lfile); </code></pre> <p>But if you're doing lots and lots of this (or your host blocks file access to remote systems), consider using CURL, which is more efficient, mildly faster and available on more shared hosts. </p> <p>You can also spoof the user agent to look like a desktop rather than a bot!</p> <pre><code>$url = "http://other-site/image.png"; $dir = "/my/local/dir/"; $lfile = fopen($dir . basename($url), "w"); $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_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)'); curl_setopt($ch, CURLOPT_FILE, $lfile); fclose($lfile); curl_close($ch); </code></pre> <p>With both instances, you might want to pass it through GD to make sure it really is an image.</p> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909434#909434 0 Answer by brianegge for Copy Image from Remote Server Over HTTP brianegge 2009-05-26T07:45:21Z 2009-05-26T07:45:21Z <p>Since you've tagged your question 'php', I'll assume your running php on your server. Your best bet is if you control your own web server, then compile cURL into php. This will allow your web server to make requests to other web servers. This can be quite dangerous from a security point of view, so most basic web hosting providers won't have this option enabled. </p> <p>Here's the <a href="http://php.net/manual/en/function.curl-exec.php" rel="nofollow">php man page on using cURL</a>. In the comments you can find an example which downloads and image file. </p> <p>If you don't want to use libcurl, you could code something up using fsockopen. This is built into php (but may be disabled on your host), and can directly read and write to sockets. See <a href="http://php.net/fsockopen" rel="nofollow">Examples on the fsockopen man page</a>.</p> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909439#909439 0 Answer by dain for Copy Image from Remote Server Over HTTP dain 2009-05-26T07:47:03Z 2009-05-26T07:48:02Z <p>PHP has a built-in function file_get_contents(), which reads the content of a file into a string. <code><pre> &lt;?php //Get the file $content = file_get_contents("http://example.com/image.jpg");</p> <p>//Store in the filesystem. $fp = fopen("/location/to/save/image.jpg", "w"); fwrite($fp, $content); fclose($fp); ?&gt; </pre></code> If you wish to store the file in a database, simply use the $content variable and don't save the file to disk.</p> http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909686#909686 5 Answer by Ciaran McNulty for Copy Image from Remote Server Over HTTP Ciaran McNulty 2009-05-26T08:57:36Z 2009-05-26T08:57:36Z <p>If you have PHP5 and the HTTP stream wrapper enabled on your server, it's incredibly simple to copy it to a local file:</p> <pre><code>copy('http://somedomain.com/file.jpeg', '/tmp/file.jpeg'); </code></pre> <p>This will take care of any pipelining etc. that's needed. If you need to provide some HTTP parameters there is a third 'stream context' parameter you can provide.</p>