Today I came across a technique I'd never seen before to prevent image saving.
Flickr take a 1x1 pixel transparent gif, stretch it to the appropriate size and overlay the photo with it.
Whenever you try to interact with the photo you get the gif instead.
I ended up blocking the gif and that worked nicely.
Here is the page and the code they use:
http://www.flickr.com/photos/98033476@N00/2717268004/
Flickr take a 1x1 pixel transparent gif, stretch it to the appropriate size and overlay the photo with it.
Whenever you try to interact with the photo you get the gif instead.
I ended up blocking the gif and that worked nicely.
Here is the page and the code they use:
http://www.flickr.com/photos/98033476@N00/2717268004/
Code:
<div id="photoImgDiv2717268004" style="width:502px" class="photoImgDiv">
<img src="http://farm4.static.flickr.com/3180/2717268004_d2145751a0.jpg?v=0"
alt="1648_1_lg by double-speak."
title=""
width="500"
height="423"
onload="show_notes_initially();"
class="reflect">
<img style="position:relative;
top:-425px;
margin-bottom:-425px;
display:block;"
src="http://l.yimg.com/g/images/spaceball.gif"
alt=""
width="500"
height="423">
</div>