Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
The easy way would be to zip the image. The harder way involves either using PHP to force download, or to use Apache .htaccess file to force it, but these take some effort to setup. You can probably track down some tutorials though.
 
Thanks,
But how do you zip and image?
Are you referring to a zip compression (from a PC)?

Macs have compression too. Just right-click on the image file and choose Compress, then upload that zip file and point a link to it.
 
Make a link to an empty page with that code in the header

<?php
header('Content-type: application/jpg');
header('Content-Disposition: attachment; filename="your_image.jpg"');
readfile('your_image.jpg');
?>
make sure your image is on the server with the correct path
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.