Forum Moderators: not2easy
Or you have any suggestion that can meet my request- restrict user from copying, printing, downloading images from my page..
Thanks a lot.
Secondly - you are right that it is possible to prevent the right-click-save-as method of saving an image by placing a transparent image over the top. For example:
<style type="text/css">
.image1 {
position: absolute;
top: 50px;
left: 100px;
}
</style>
<div class="image1"><img src="realimage.jpg" width="50" height="50"></div>
<div class="image1"><img src="transparent.gif" width="50" height="50"></div>
As you can see, both images occupy the same position on the page. Simply use a transparent gif for the second one so that the first image shows through. Adjust positions and dimensions to suit.
Such a program allows the user to select a color in an image and make it transparent, if saved as a .gif. This allows a designer to float visual objects such as logos and special fonts on varied backgrounds.
If you are using Open Source, you may have some trouble finding a program that supports .gif.
It is possible the program you use to process your .jpg's can save in .gif, but you may have overlooked it. Such capability us usually accessed one of two ways:
1) From the File menu, choose Save As. This usually produces a dialog window, which may have a drop-down list of file type choices.
2) From the File menu, choose Export. This generally produces a dialog window, again with format choices for the file being saved.