Kendi sunucuna çek, ben mesela şöyle çekiyorum.
function getimages($url){
$fileInfo = pathinfo($url);
$filename = strtolower($fileInfo['filename']).'.'.strtolower($fileInfo['extension']);
$nere = '/pics/'.$filename;
if (!is_file($nere)){
$cd = curl_init();
$ref = 'http://www.google.com';
curl_setopt($cd,CURLOPT_URL,$url);
curl_setopt($cd,CURLOPT_RETURNTRANSFER,1);
curl_setopt($cd,CURLOPT_USERAGENT,$_SERVER['HTTP_USER_AGENT']);
curl_setopt($cd,CURLOPT_REFERER,$ref);
$data = curl_exec($cd);
curl_close($cd);
file_put_contents($filename,$data);
copy($filename,$nere);
}
}