Bitmap.draw on flickr images

Hello everyone!

Just wondering whether anyone had any workarounds to using bitmap.draw cross domain.

Is there any kind of proxy script that wont use my bandwidth in loading the image?

I thought up something like this…

<?
$path = $_GET[‘image’];
header(“Content-type: image/jpg”);
@readfile($path);
?>

but got the response that it does use my bandwidth.

Any ideas?

Thanks!!
Cary