cURL ve file_get_contents ile yapabilirsin.
<?
$resim='http://www.site.com/resima.jpg';
$yeni='yeni.jpg';
$veri = file_get_contents($resim);
$kayit= fopen('resimler/depo/'.$yeni,'w+');
fwrite($kayit,$veri);
fclose($kayit);
// test etmedim ama çalışacaktır.
// resimler/depo yolunun chmodu 777 olmalı
?>