Computing.Net > Forums > Web Development > how to stop google images from

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

how to stop google images from

Reply to Message Icon

Name: XpUser4Real
Date: January 5, 2008 at 10:52:15 Pacific
OS: xphomeSP2
CPU/Ram: 1.4/512
Product: gateway desktop
Comment:

Hi, how can I stop european and other countries from using google images to steal my on-line photos?
I use statcounter and it shows the pics they are stealing, but their return address is almost the same as my url with a few letters missing. I went so far as removing the pics from my website.
I have their IP address listed on statcounter, is there any way I can report them?
Thanks


Some HELP in posting on Cnet plus free progs and instructions Glad to Help!



Sponsored Link
Ads by Google

Response Number 1
Name: Michael J (by mjdamato)
Date: January 5, 2008 at 14:12:19 Pacific
Reply:

First of all you do not know they are "stealing" you pictures. If you put your photos online then anyone visiting your pages will have downloaded the pictures to their computer. Any time you visit a page on the internet the entire content of that page is downloaded to your computer. All you might know is that someone accessed a photo directly, which still doesn't mean they are stealing it, they could have just clicked a direct link to it.

Now, if someone is using your photos without your consent then that is another issue, but just because they have accessed them is no indication that they are doing so.

There is no way to protect your images and have them available online. There are "hacks" that make it only moderately more difficult to "copy" your images without having to go into the browser cache. (But, they are still in the cache to get anyway). You could diable right-clicking, put a transparent gif over the image so the user can't right-click and save as, etc. But, then there is always the Print Screen button.

My advice is to put a watermark on your photos. That way it is very difficult for anyone to repurpose your photos without others knowing they took them from your site.

Michael J


0

Response Number 2
Name: XpUser4Real
Date: January 5, 2008 at 14:53:30 Pacific
Reply:

Thanks Michael, I'll use the watermark, I used to before and somehow forgot about it. Picture shark is free and that's what I used before.
Thanks again

Some HELP in posting on Cnet plus free progs and instructions Glad to Help!


0

Response Number 3
Name: bombjack
Date: January 17, 2008 at 06:27:15 Pacific
Reply:

If you don't want to people could found your images into the web browser (Google, Yahoo), use the robots.txt. Make the ordinary.txt file and write there following:

user-agen: *
disallow: /directory with your images/

and copy it into root directory (directory, where is your index file on server. If your images are not in one directory, repeat the disallow order and instead director put there the image file name:

user-agen: *
disallow: /image.gif/

http://www.ub-art.co.uk


0

Response Number 4
Name: allam_rahmeh
Date: February 14, 2008 at 03:50:36 Pacific
Reply:

To remove an image from Google's image index, add a robots.txt file to the root of the server that blocks the image.

To remove all the images on your site from google, place the following robots.txt file in your server root:

User-agent: Googlebot-Image
Disallow: /

then you can protect your image by java script code :

<script language="JavaScript">
var msg="Right Click Disabled!";
function disableIE() {if (document.all) {alert(msg);return false;}
}
function disableNS(e) {
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(msg);return false;}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;
} else {
document.onmouseup=disableNS;document.oncontextmenu=disableIE;
}
document.oncontextmenu=new Function("alert(msg);return false")
</script>

Allam Rahmeh


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Web Development Forum Home


Sponsored links

Ads by Google


Results for: how to stop google images from

How to add an Image to a database www.computing.net/answers/webdevel/how-to-add-an-image-to-a-database/2147.html

how to remove selected items from a list box www.computing.net/answers/webdevel/how-to-remove-selected-items-from-a-list-box-/4066.html

Images in Javascript with http:// l www.computing.net/answers/webdevel/images-in-javascript-with-http-l/534.html