473,756 Members | 1,818 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Protecting your images from being saved.

Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.
Jun 2 '08 #1
11 1691
sarika wrote:
Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.
If you are going to send images, there can do whatever he wants with it,
and there is *nothing* you can do about it. You can disable cache, you
can disable right click, but user still save the image or download it
directly.

Typical solution is to place watermark on the image. Take a look on the
stock image retailers on how they do that.

best regards
Piotr N
Jun 2 '08 #2
sarika wrote:
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Easy: don't put your images in a webserver in the first place. That's the
*only* way to prevent copies to being spawned.
--
----------------------------------
Iván Sánchez Ortega -ivansanchez-algarroba-escomposlinux-punto-org-

Un ordenador no es un televisor ni un microondas, es una herramienta
compleja.
Jun 2 '08 #3
Piotr wrote:
sarika wrote:
>Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.

If you are going to send images, there can do whatever he wants with it,
and there is *nothing* you can do about it. You can disable cache, you
can disable right click, but user still save the image or download it
directly.
Yea, even unto doing a cut and paste of the screen image. If it can be
displayed, it can be nicked. I know, Ive done it ;-)

Typical solution is to place watermark on the image. Take a look on the
stock image retailers on how they do that.
Yes. Simple job with e.g. Corel Draw. Put something over it with a high
degree of transparency, and then save as a highly compressed Jpeg.The
art is to get it nice enough to tempt them to buy it,but not so nice
that they don't need to.

best regards
Piotr N
Jun 2 '08 #4
The Natural Philosopher wrote:
>Typical solution is to place watermark on the image. Take a look on the
stock image retailers on how they do that.
Yes. Simple job with e.g. Corel Draw. Put something over it with a high
degree of transparency, and then save as a highly compressed Jpeg.The
art is to get it nice enough to tempt them to buy it,but not so nice
that they don't need to.
This is a PHP group, so I'll say that creating a .png watermark (something
white with a great deal of alpha) and using imagecopymerge( ) will do the
trick, and it can be done programatically whenever a new image is added to
a DB. Also, remember that imagejpg() can be used with a specified quality
parameter.
Adding steganography to the image should be fun, though...
Cheers,
--
----------------------------------
Iván Sánchez Ortega -ivansanchez-algarroba-escomposlinux-punto-org-

Be free and open and breezy! Enjoy! Things won't get any better so
get used to it.

Jun 2 '08 #5
sarika wrote:
Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.
Forget it.

Once an image is displayed in a browser it is on the machine and can then be
copied. All you will do by disabling all the browser functions such as right
click is to make your site thoroughly terrible to visit.
Jun 2 '08 #6
In our last episode,
<f6************ *************** *******@l17g200 0pri.googlegrou ps.com>, the
lovely and talented sarika broadcast on comp.lang.php:
Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
Then don't put them on the web. Yes, you can cripple some browser
functions, which will hamper the mentally-challenged users of those
browsers, but there is no way to prevent saving "by any means."

I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.
Please help me as it is urgently required.
--
Lars Eighner <http://larseighner.com/us****@larseigh ner.com
Countdown: 260 days to go.
Jun 2 '08 #7
On May 5, 10:28*am, sarika <sarikason...@g mail.comwrote:
Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.
There is no technological way to do that. Even if you were to go as
far as to implement your own data transfer protocol that would only
allow authorised clients to connect, developed your own browser with
authentication keys that tied every copy of the software to one of
your subscribers and designed the browser software to disallow
anything except the viewing of images, even assuming you could do that
in a way that could not be circumvented (and better folks than you
have tried and failed), what's to stop somebody from hitting the print
screen button, copying the display to the clipboard, pasting it into
an image editor and saving it off anyway? The absolute best you could
do is make your site so obnoxious to use that nobody will use it.
(Technically that would mean nobody was stealing your images, but only
because nobody was even bothering to look at them). Watermarking
might be a better choice but if the watermark you apply is obnoxious
enough then it will have the same effect of simply driving your users
away.

Your only option would be legal, by requiring people to become members
of the site to view anything, and requiring them to agree to some kind
of EULA to sign up. Then you could in theory litigate against anybody
using images on the site contrary to how you want them used. But that
approach is expensive, lawyers don't work for free. And if your site
has any kind of success at all the instant you try to sue one of your
users for saving a copy of an image on your site the online press will
completely vilify you.

Realistically, you can either accept some image theft will occur and
live with it, or you can not publish your images on the internet.
Those are your only choices.
Jun 2 '08 #8
On May 5, 2:28*pm, sarika <sarikason...@g mail.comwrote:
Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.
You have only one good option: You high transparent image on top of
the image. This way many cannot copy it.

and what about another one: using flash for displayig image. I am not
sure. But this way your site will become very heavy.
Jun 2 '08 #9
Satya wrote:
On May 5, 2:28 pm, sarika <sarikason...@g mail.comwrote:
>Hi all
I am making a website related to uploading art pieces. My requirement
is to protect art pieces from being saved by any means.
I dont want my images to be save in temporary internet files,not in
cookies.
Also the page should not be saved as in any browser. and Right click
on image should be disables . Also no one can take the printout using
print screen.

Please help me as it is urgently required.

You have only one good option: You high transparent image on top of
the image. This way many cannot copy it.

and what about another one: using flash for displayig image. I am not
sure. But this way your site will become very heavy.
You can still do a screen capture.
Jun 2 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

24
5057
by: Yang Li Ke | last post by:
Hi guys! Anyone know a way so that users purchasing my scripts would not be able to share them with other people ? Yang
11
1913
by: Steve | last post by:
I have a pretty nice php web site, that's also reasonably secure. However, I wrote some php code to create some dynamic images based on database data, but I can't figure out how to secure this script? when I reference the php code via img src="myimage.php", none of my session variables are available for use in the script. So, without my session variables, how am I suppose to ensure that the script is only run by a valid user, rather...
12
2204
by: Roland Hall | last post by:
I read Aaron's article: http://www.aspfaq.com/show.asp?id=2276 re: protecting images from linked to by other sites. There is a link at the bottom of that page that references an interesting article about ways of protecting your images from being downloaded. It was my understanding that if the client sees it, then it's in the client cache. Am I wrong in this belief or not? I took the information in the article and created the .asp that...
11
3053
by: moondaddy | last post by:
I have images that I need to prevent the user from doing a right click and selecting "Save Picture As"? How can I do this? -- moondaddy@nospam.com
5
2735
by: IkBenHet | last post by:
Hello, I use this script to upload image files to a folder on a IIS6 server: ******************* START UPLOAD.ASPX FILE ********************** <%@ Page Language="VB" Debug="true" %>
1
1327
by: darrel | last post by:
I need to be able to password protect individual pages. For instance: /protected.aspx?id=123 /protected.aspx?id=555 Both would need to be only accessible to two different people (with their own usr/pwd). What is the most appropriate way to handle this?
7
9491
by: petr pilsl | last post by:
sorry - no idea where to post my question, so I crossposted to a linux and a html-authoring-group. Both groups might be familiar with wget. wget -p http://www.goldfisch.at does not load the images embedded in this website. I wonder why? according to the man-page : -p
7
2000
by: Keith Hughitt | last post by:
Hi all, I am having trouble preloading images in a javascript application, and was wondering if anyone had any suggestions. Basically I have a bunch of images stored in a database as BLOBs. At any given point in time a subset of those images is displayed on- screen. At certains times I want to swap out those on screen with new ones from the database, and do some as seamlessly as possible. So what I've tried to do is first create Image...
3
3581
by: =?Utf-8?B?UiBSZXllcw==?= | last post by:
Hi! This discussion may help other programmers get a better idea of how to save uploaded images through a website. Why? Well currently, I save 3 versions of every uploaded image on my own little website: 1. Small: DOWNsize of original image to be used as a thumbnail. 2. Medium: DOWNsize of original image to be used as user avatars/icons in forums or profiles.
0
9456
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10034
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9872
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9713
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7248
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6534
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5142
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2666
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.