HighDots Forums  

Securing images from download

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Securing images from download in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
neuron
 
Posts: n/a

Default Securing images from download - 02-01-2005 , 11:08 AM






Is there a simple way of disabling a user from downloading images placed within an html page? Thanks for the assist.

Reply With Quote
  #2  
Old   
dan mode
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 11:16 AM






there are js and other ways to hinder download - BUT, if you put it on the
web...people will get it. Nothing you can do to stop that.

--

Dan
blah blah regla de las firmas de la longitud
*NEW* check me out http://d-mode.ww.com
Insert > Flash > Flash button....do it
(ahhh...vanity)
__
"neuron" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
Is there a simple way of disabling a user from downloading images placed
within an html page? Thanks for the assist.




Reply With Quote
  #3  
Old   
Alan
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 11:19 AM




Quote:
Is there a simple way of disabling a user from downloading images placed
within an html page? Thanks for the assist.
You can't.

You can put in a meta tag to disable the win/IE Image Toolbar.
Put this within the head section:
<meta http-equiv="imagetoolbar" content="no">


You can put in JavaScripts that will try to disable the right-click menu.
But they are useless as far as securing images or preventing people from
saving them. If you do want to do this- visit http:dynamicdrive.com or
http://kaosweaver.com has a free dw extension to insert this.

more info on why you can't stop this, and what you can do and what it will
do-
http://continue.to/hope



Reply With Quote
  #4  
Old   
Joe Makowiec
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 11:20 AM



On 01 Feb 2005 in macromedia.dreamweaver, neuron wrote:

Quote:
Is there a simple way of disabling a user from downloading images
placed within an html page?
No. There isn't even a complicated one.

These may offer some insight:

http://www.jamesshuggins.com/h/web1/...ownloading.htm

http://continue.to/hope

--
Joe Makowiec
http://makowiec.net/
Email: http://makowiec.net/email.php


Reply With Quote
  #5  
Old   
mzanime.com
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 01:09 PM



One of the best solutions that I read, is to have a positioned div with a
transparent gif *on top* of a CSS background of your actual image. From the
web, it only looks like your image is there because they will be seeing through
the transpareent GIF.

And if they right-click to save, they will only save the transparent GIF. If
they view source they won't find it, because it'll be well hidden in your CSS
file as a background image. (And you can crunch all your CSS code up into 1 or
2 lines.) However if they REALLY want your images they might take a screen
capture and steal it that way. This is the best solution I know of.


Reply With Quote
  #6  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 01:12 PM



It's a lame best solution though - wouldn't you agree?

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"mzanime.com" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
One of the best solutions that I read, is to have a positioned div with a
transparent gif *on top* of a CSS background of your actual image. From
the
web, it only looks like your image is there because they will be seeing
through
the transpareent GIF.

And if they right-click to save, they will only save the transparent GIF.
If
they view source they won't find it, because it'll be well hidden in your
CSS
file as a background image. (And you can crunch all your CSS code up into
1 or
2 lines.) However if they REALLY want your images they might take a screen
capture and steal it that way. This is the best solution I know of.




Reply With Quote
  #7  
Old   
Gary White
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 01:20 PM



neuron wrote:

Quote:
Is there a simple way of disabling a user from downloading images
placed within an html page? Thanks for the assist.

Place this script in the <head> of your document:

<script type="text/javascript">
var msg="Your right mouse button has been disabled while\n"
msg+="you are viewing this page because we don't care\n";
msg+="about usability and value our images more than\n";
msg+="our customers.";
document.oncontextmenu=new Function("alert(msg);return false")
</script>


Gary


Reply With Quote
  #8  
Old   
dan mode
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 01:24 PM



I agree - waste of time...if someone wants it, they'll take it.

--

Dan
blah blah regla de las firmas de la longitud
*NEW* check me out http://d-mode.ww.com
Insert > Flash > Flash button....do it
(ahhh...vanity)
__
"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote

Quote:
It's a lame best solution though - wouldn't you agree?

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"mzanime.com" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:ctogl4$rci$1 (AT) forums (DOT) macromedia.com...
One of the best solutions that I read, is to have a positioned div with
a
transparent gif *on top* of a CSS background of your actual image. From
the
web, it only looks like your image is there because they will be seeing
through
the transpareent GIF.

And if they right-click to save, they will only save the transparent
GIF.
If
they view source they won't find it, because it'll be well hidden in
your
CSS
file as a background image. (And you can crunch all your CSS code up
into
1 or
2 lines.) However if they REALLY want your images they might take a
screen
capture and steal it that way. This is the best solution I know of.






Reply With Quote
  #9  
Old   
dan mode
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 01:25 PM



LOL

--

Dan
blah blah regla de las firmas de la longitud
*NEW* check me out http://d-mode.ww.com
Insert > Flash > Flash button....do it
(ahhh...vanity)
__
"Gary White" <reply (AT) newsgroup (DOT) please> wrote

Quote:
neuron wrote:

Is there a simple way of disabling a user from downloading images
placed within an html page? Thanks for the assist.


Place this script in the <head> of your document:

script type="text/javascript"
var msg="Your right mouse button has been disabled while\n"
msg+="you are viewing this page because we don't care\n";
msg+="about usability and value our images more than\n";
msg+="our customers.";
document.oncontextmenu=new Function("alert(msg);return false")
/script


Gary



Reply With Quote
  #10  
Old   
darrel
 
Posts: n/a

Default Re: Securing images from download - 02-01-2005 , 02:00 PM




Quote:
One of the best solutions that I read
There *is* no solution. Period. All of the schemes are nothing more than
excercises in thumb-twiddling.

-Darrle




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.