resim.php
<?php
		ob_start();
        $ref = 'referer';
        $ch = curl_init();
        curl_setopt($ch,CURLOPT_URL,$_GET['resim']);
        curl_setopt($ch,CURLOPT_HEADER,0);
        curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
        curl_setopt($ch,CURLOPT_REFERER,$ref);
        curl_setopt($ch,CURLOPT_PROXY,'221.130.17.235');
        curl_setopt($ch,CURLOPT_PROXYPORT,'80');
        curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
        $data = curl_exec($ch);
        curl_close($ch);
		$length = strlen($data);
		header('Last-Modified: '.date('r'));
		header('Accept-Ranges: bytes');
		header('Content-Length: '.$length);
		header('Content-Type: image/jpeg');
		print($data);
		ob_end_flush();
?>
kullanımı :
<img src="resim.php?resim=resim adresi" />
resimler için bunu kullanabilirsin