I am trying to find some good Freeware for Image Security to keep people
from saving my image files.
I am relegated to using Trellix to design my website since Earthlink.net is
too cheap to provide Frontpage.

Thanks in advance.

D.H.

Re: Does anyone know of some good Image Security Freeware? by Steve

Steve
Tue Dec 09 09:19:12 CST 2003

Don't waste your time because it can't be done.
Either publish a degraded image that folks won't want,
or watermark it with test.
If an image shows in a browser window, it is already
in the viewers browser cache files.

As for Earthink and FrontPage, I don't know of any ISP
that provides FrontPage for free. FrontPage extensions
on the server maybe, but not the FrontPage "program."

--
95isalive
This site is best viewed..................
..............................with a computer

"David Halpern" <photonicbandgap@earthlink.net> wrote in message
news:IrlBb.5157$_r6.2138@newsread1.news.pas.earthlink.net...
> I am trying to find some good Freeware for Image Security to keep people
> from saving my image files.
> I am relegated to using Trellix to design my website since Earthlink.net
is
> too cheap to provide Frontpage.
>
> Thanks in advance.
>
> D.H.
>
>



Re: Does anyone know of some good Image Security Freeware? by Jim

Jim
Tue Dec 09 10:37:11 CST 2003

David,

You might want to check out my recent article on this:

http://www.jimcoaddins.com/protect.htm.

--
Jim Cheshire
Jimco Add-ins
http://www.jimcoaddins.com
===================================
Co-author of Special Edition
Using Microsoft FrontPage 2003
Order it today!
http://sefp2003.frontpagelink.com



"David Halpern" <photonicbandgap@earthlink.net> wrote in message
news:IrlBb.5157$_r6.2138@newsread1.news.pas.earthlink.net...
> I am trying to find some good Freeware for Image Security to keep people
> from saving my image files.
> I am relegated to using Trellix to design my website since Earthlink.net
is
> too cheap to provide Frontpage.
>
> Thanks in advance.
>
> D.H.
>
>



Does anyone know of some good Image Security Freeware? by Crush

Crush
Tue Dec 09 17:26:13 CST 2003

There is no foolproof way to pull this off. But these
scripts disable the right click function and will stop
novices anyway. The first example works as a mouseover
and will need to be placed wherever you have an image,
just change the source to your own. The second one
actually disables the right click for the entire page.
Good luck.

Ex 1:
<A HREF="javascript:void(0)" onMouseover="alert('Please!
Do not download this image. Thanks!')"><IMG
SRC="http://someplace.com/image.gif" Align="center"
Border="0"></A>

________________________________________________

Ex 2:
<body onLoad="imageTrap()">
<script language="JavaScript">
function imageProtect() {
msg = "Downloading Image Not Allowed! ";

setTimeout( "alert( msg )", 0 );
return false;
}

function imageTrap() {
if( document.images ) {
for( i=0; i<document.images.length; i++ ) {
document.images[i].onmousedown =
imageProtect;
}
}
}
</script>

<img src='dummy.gif' width='100' height='20' border=1>




>-----Original Message-----
>I am trying to find some good Freeware for Image
Security to keep people
>from saving my image files.
>I am relegated to using Trellix to design my website
since Earthlink.net is
>too cheap to provide Frontpage.
>
>Thanks in advance.
>
>D.H.
>
>
>.
>

Re: Does anyone know of some good Image Security Freeware? by Jim

Jim
Tue Dec 09 20:29:21 CST 2003

Crush,

It doesn't do anything simply because of the fact that in almost all cases,
the files are automatically downloaded to the user's machine without any
action on their part other than browsing the page.

--
Jim Cheshire
Jimco Add-ins
http://www.jimcoaddins.com
===================================
Co-author of Special Edition
Using Microsoft FrontPage 2003
Order it today!
http://sefp2003.frontpagelink.com



"Crush" <anonymous@discussions.microsoft.com> wrote in message
news:064501c3beab$d60df5b0$a101280a@phx.gbl...
> There is no foolproof way to pull this off. But these
> scripts disable the right click function and will stop
> novices anyway. The first example works as a mouseover
> and will need to be placed wherever you have an image,
> just change the source to your own. The second one
> actually disables the right click for the entire page.
> Good luck.
>
> Ex 1:
> <A HREF="javascript:void(0)" onMouseover="alert('Please!
> Do not download this image. Thanks!')"><IMG
> SRC="http://someplace.com/image.gif" Align="center"
> Border="0"></A>
>
> ________________________________________________
>
> Ex 2:
> <body onLoad="imageTrap()">
> <script language="JavaScript">
> function imageProtect() {
> msg = "Downloading Image Not Allowed! ";
>
> setTimeout( "alert( msg )", 0 );
> return false;
> }
>
> function imageTrap() {
> if( document.images ) {
> for( i=0; i<document.images.length; i++ ) {
> document.images[i].onmousedown =
> imageProtect;
> }
> }
> }
> </script>
>
> <img src='dummy.gif' width='100' height='20' border=1>
>
>
>
>
> >-----Original Message-----
> >I am trying to find some good Freeware for Image
> Security to keep people
> >from saving my image files.
> >I am relegated to using Trellix to design my website
> since Earthlink.net is
> >too cheap to provide Frontpage.
> >
> >Thanks in advance.
> >
> >D.H.
> >
> >
> >.
> >



Re: Does anyone know of some good Image Security Freeware? by Mike

Mike
Wed Dec 10 08:24:30 CST 2003

Not to mention the >File >Save option to save the whole page
or IE6s image popup toolbar which gives the save option.
The people who take the most images are the one's to worry
about, and they are also the ones that know what they are
doing

Mike


: Crush,
:
: It doesn't do anything simply because of the fact that in
: almost all cases, the files are automatically downloaded
: to the user's machine without any action on their part
: other than browsing the page.
:
:
: "Crush" <anonymous@discussions.microsoft.com> wrote in
: message news:064501c3beab$d60df5b0$a101280a@phx.gbl...
:: There is no foolproof way to pull this off. But these
:: scripts disable the right click function and will stop
:: novices anyway. The first example works as a mouseover
:: and will need to be placed wherever you have an image,
:: just change the source to your own. The second one
:: actually disables the right click for the entire page.
:: Good luck.
::
:: Ex 1:
:: <A HREF="javascript:void(0)" onMouseover="alert('Please!
:: Do not download this image. Thanks!')"><IMG
:: SRC="http://someplace.com/image.gif" Align="center"
:: Border="0"></A>
::
:: ________________________________________________
::
:: Ex 2:
:: <body onLoad="imageTrap()">
:: <script language="JavaScript">
:: function imageProtect() {
:: msg = "Downloading Image Not Allowed! ";
::
:: setTimeout( "alert( msg )", 0 );
:: return false;
:: }
::
:: function imageTrap() {
:: if( document.images ) {
:: for( i=0; i<document.images.length; i++ ) {
:: document.images[i].onmousedown =
:: imageProtect;
:: }
:: }
:: }
:: </script>
::
:: <img src='dummy.gif' width='100' height='20' border=1>
::
::
::
::
::: -----Original Message-----
::: I am trying to find some good Freeware for Image
:: Security to keep people
::: from saving my image files.
::: I am relegated to using Trellix to design my website
:: since Earthlink.net is
::: too cheap to provide Frontpage.
:::
::: Thanks in advance.
:::
::: D.H.
:::
:::
::: .




Re: Does anyone know of some good Image Security Freeware? by Crush

Crush
Wed Dec 10 09:32:17 CST 2003

As I had said, there is no foolproof way to stop it.
However, most novices I have come in contact with don't
realize there are options beyond the right click.


>-----Original Message-----
>Not to mention the >File >Save option to save the whole
page
>or IE6s image popup toolbar which gives the save option.
>The people who take the most images are the one's to
worry
>about, and they are also the ones that know what they are
>doing
>
>Mike
>
>
>: Crush,
>:
>: It doesn't do anything simply because of the fact that
in
>: almost all cases, the files are automatically
downloaded
>: to the user's machine without any action on their part
>: other than browsing the page.
>:
>:
>: "Crush" <anonymous@discussions.microsoft.com> wrote in
>: message news:064501c3beab$d60df5b0$a101280a@phx.gbl...
>:: There is no foolproof way to pull this off. But these
>:: scripts disable the right click function and will stop
>:: novices anyway. The first example works as a mouseover
>:: and will need to be placed wherever you have an image,
>:: just change the source to your own. The second one
>:: actually disables the right click for the entire page.
>:: Good luck.
>::
>:: Ex 1:
>:: <A HREF="javascript:void(0)" onMouseover="alert
('Please!
>:: Do not download this image. Thanks!')"><IMG
>:: SRC="http://someplace.com/image.gif" Align="center"
>:: Border="0"></A>
>::
>:: ________________________________________________
>::
>:: Ex 2:
>:: <body onLoad="imageTrap()">
>:: <script language="JavaScript">
>:: function imageProtect() {
>:: msg = "Downloading Image Not Allowed! ";
>::
>:: setTimeout( "alert( msg )", 0 );
>:: return false;
>:: }
>::
>:: function imageTrap() {
>:: if( document.images ) {
>:: for( i=0; i<document.images.length; i++ ) {
>:: document.images[i].onmousedown =
>:: imageProtect;
>:: }
>:: }
>:: }
>:: </script>
>::
>:: <img src='dummy.gif' width='100' height='20' border=1>
>::
>::
>::
>::
>::: -----Original Message-----
>::: I am trying to find some good Freeware for Image
>:: Security to keep people
>::: from saving my image files.
>::: I am relegated to using Trellix to design my website
>:: since Earthlink.net is
>::: too cheap to provide Frontpage.
>:::
>::: Thanks in advance.
>:::
>::: D.H.
>:::
>:::
>::: .
>
>
>
>.
>

Re: Does anyone know of some good Image Security Freeware? by Jim

Jim
Wed Dec 10 12:14:39 CST 2003

I think Mike's point (and a very good one) is that the novices aren't the
ones out there stealing content, or if they are, it's of really no concern.
Do you really concern yourself with your image being used on a Web site that
will see 10 visitors this year?

The people you should really worry about are those who are harvesting images
for use in redistribution or for large audiences. The point Mike made is
that these people know what they're doing and are not fooled by such
techniques.

I think you need to decide whether the inconvenience created for legitimate
users is worth the extremely minimal protection you get (which actually
amounts to none at all.)

--
Jim Cheshire
Jimco Add-ins
http://www.jimcoaddins.com
===================================
Co-author of Special Edition
Using Microsoft FrontPage 2003
Order it today!
http://sefp2003.frontpagelink.com



"Crush" <anonymous@discussions.microsoft.com> wrote in message
news:0b8c01c3bf32$cb523be0$a501280a@phx.gbl...
> As I had said, there is no foolproof way to stop it.
> However, most novices I have come in contact with don't
> realize there are options beyond the right click.
>
>
> >-----Original Message-----
> >Not to mention the >File >Save option to save the whole
> page
> >or IE6s image popup toolbar which gives the save option.
> >The people who take the most images are the one's to
> worry
> >about, and they are also the ones that know what they are
> >doing
> >
> >Mike
> >
> >
> >: Crush,
> >:
> >: It doesn't do anything simply because of the fact that
> in
> >: almost all cases, the files are automatically
> downloaded
> >: to the user's machine without any action on their part
> >: other than browsing the page.
> >:
> >:
> >: "Crush" <anonymous@discussions.microsoft.com> wrote in
> >: message news:064501c3beab$d60df5b0$a101280a@phx.gbl...
> >:: There is no foolproof way to pull this off. But these
> >:: scripts disable the right click function and will stop
> >:: novices anyway. The first example works as a mouseover
> >:: and will need to be placed wherever you have an image,
> >:: just change the source to your own. The second one
> >:: actually disables the right click for the entire page.
> >:: Good luck.
> >::
> >:: Ex 1:
> >:: <A HREF="javascript:void(0)" onMouseover="alert
> ('Please!
> >:: Do not download this image. Thanks!')"><IMG
> >:: SRC="http://someplace.com/image.gif" Align="center"
> >:: Border="0"></A>
> >::
> >:: ________________________________________________
> >::
> >:: Ex 2:
> >:: <body onLoad="imageTrap()">
> >:: <script language="JavaScript">
> >:: function imageProtect() {
> >:: msg = "Downloading Image Not Allowed! ";
> >::
> >:: setTimeout( "alert( msg )", 0 );
> >:: return false;
> >:: }
> >::
> >:: function imageTrap() {
> >:: if( document.images ) {
> >:: for( i=0; i<document.images.length; i++ ) {
> >:: document.images[i].onmousedown =
> >:: imageProtect;
> >:: }
> >:: }
> >:: }
> >:: </script>
> >::
> >:: <img src='dummy.gif' width='100' height='20' border=1>
> >::
> >::
> >::
> >::
> >::: -----Original Message-----
> >::: I am trying to find some good Freeware for Image
> >:: Security to keep people
> >::: from saving my image files.
> >::: I am relegated to using Trellix to design my website
> >:: since Earthlink.net is
> >::: too cheap to provide Frontpage.
> >:::
> >::: Thanks in advance.
> >:::
> >::: D.H.
> >:::
> >:::
> >::: .
> >
> >
> >
> >.
> >



Re: Does anyone know of some good Image Security Freeware? by David

David
Fri Dec 19 23:40:29 CST 2003



Well thank you all for your help I do appreciate it.

Thanks all,

D.H.

"Jim Cheshire" <contactme@www.jimcoaddins.com> wrote in message
news:eZdjCm0vDHA.1788@tk2msftngp13.phx.gbl...
> I think Mike's point (and a very good one) is that the novices aren't the
> ones out there stealing content, or if they are, it's of really no
concern.
> Do you really concern yourself with your image being used on a Web site
that
> will see 10 visitors this year?
>
> The people you should really worry about are those who are harvesting
images
> for use in redistribution or for large audiences. The point Mike made is
> that these people know what they're doing and are not fooled by such
> techniques.
>
> I think you need to decide whether the inconvenience created for
legitimate
> users is worth the extremely minimal protection you get (which actually
> amounts to none at all.)
>
> --
> Jim Cheshire
> Jimco Add-ins
> http://www.jimcoaddins.com
> ===================================
> Co-author of Special Edition
> Using Microsoft FrontPage 2003
> Order it today!
> http://sefp2003.frontpagelink.com
>
>
>
> "Crush" <anonymous@discussions.microsoft.com> wrote in message
> news:0b8c01c3bf32$cb523be0$a501280a@phx.gbl...
> > As I had said, there is no foolproof way to stop it.
> > However, most novices I have come in contact with don't
> > realize there are options beyond the right click.
> >
> >
> > >-----Original Message-----
> > >Not to mention the >File >Save option to save the whole
> > page
> > >or IE6s image popup toolbar which gives the save option.
> > >The people who take the most images are the one's to
> > worry
> > >about, and they are also the ones that know what they are
> > >doing
> > >
> > >Mike
> > >
> > >
> > >: Crush,
> > >:
> > >: It doesn't do anything simply because of the fact that
> > in
> > >: almost all cases, the files are automatically
> > downloaded
> > >: to the user's machine without any action on their part
> > >: other than browsing the page.
> > >:
> > >:
> > >: "Crush" <anonymous@discussions.microsoft.com> wrote in
> > >: message news:064501c3beab$d60df5b0$a101280a@phx.gbl...
> > >:: There is no foolproof way to pull this off. But these
> > >:: scripts disable the right click function and will stop
> > >:: novices anyway. The first example works as a mouseover
> > >:: and will need to be placed wherever you have an image,
> > >:: just change the source to your own. The second one
> > >:: actually disables the right click for the entire page.
> > >:: Good luck.
> > >::
> > >:: Ex 1:
> > >:: <A HREF="javascript:void(0)" onMouseover="alert
> > ('Please!
> > >:: Do not download this image. Thanks!')"><IMG
> > >:: SRC="http://someplace.com/image.gif" Align="center"
> > >:: Border="0"></A>
> > >::
> > >:: ________________________________________________
> > >::
> > >:: Ex 2:
> > >:: <body onLoad="imageTrap()">
> > >:: <script language="JavaScript">
> > >:: function imageProtect() {
> > >:: msg = "Downloading Image Not Allowed! ";
> > >::
> > >:: setTimeout( "alert( msg )", 0 );
> > >:: return false;
> > >:: }
> > >::
> > >:: function imageTrap() {
> > >:: if( document.images ) {
> > >:: for( i=0; i<document.images.length; i++ ) {
> > >:: document.images[i].onmousedown =
> > >:: imageProtect;
> > >:: }
> > >:: }
> > >:: }
> > >:: </script>
> > >::
> > >:: <img src='dummy.gif' width='100' height='20' border=1>
> > >::
> > >::
> > >::
> > >::
> > >::: -----Original Message-----
> > >::: I am trying to find some good Freeware for Image
> > >:: Security to keep people
> > >::: from saving my image files.
> > >::: I am relegated to using Trellix to design my website
> > >:: since Earthlink.net is
> > >::: too cheap to provide Frontpage.
> > >:::
> > >::: Thanks in advance.
> > >:::
> > >::: D.H.
> > >:::
> > >:::
> > >::: .
> > >
> > >
> > >
> > >.
> > >
>
>