ASPX templates
Version 2.x > ASPX templates > Prevent Downloading Images Inserted with FCKEditor View modes: 
User avatar
Certified Developer 8
Certified Developer 8
norashlea - 5/4/2007 3:45:50 AM
   
Prevent Downloading Images Inserted with FCKEditor
Have had a request to prevent downloading images inserted on a site by the users.

In an image gallery, I think I can achieve this automatically by modifying the transformation to display the image as a td background and then overlaying a transparent gif spacer as the td cell content (works ok with a standard html/aspx page), but trying to figure out if something like this is possible to do in an editable region of a page. The FCKEditor table editor doesn't give users an easy option to set the cell background.

User avatar
Member
Member
Mufasa - 1/24/2008 12:23:23 AM
   
RE:Prevent Downloading Images Inserted with FCKEditor
Keep in mind, if the user can see the image, they're able to save it if they're savvy enough. So all of this is just security through obscurity and will never completely solve your client's issue. It would be smarter (but more work) to watermark the images, put up a legal notice, and then have the client police any illegal uses.

But of course, if the client asked you to do this, they probably won't go to all of that trouble.

The next problem is the 'timeline' of how easy it is to use for a user versus how 'secure' (in this case 'obscure') it is.

If you still want to do the CSS background-image trick, but in the editor, you would have to teach the client basic CSS and how to do manipulate CSS in the editor. There is no other good method, as I don't see anyone creating some WYSIWYG editor to create markup to fit that model. (As it is bad from a semantic and theoretical view, and is, once again, just going to slow down users who don't want the image that bad.)