This should help on the watermarking
http://www.codeproject.com/csharp/wa...rget=watermark
"Michael Stock" <> wrote in message
news:033b01c3b989$94f6b480$...
> Hi all,
> hopefully someone can tell me how to do this for a web
> server in C#:
>
> We have images in a folder you can't access over the net.
> So everytime we need to display an image from this folder,
> we need to us the following syntax:
>
> <img src="viewImage.aspx?imageID=/secretImages/image.jpg"
> border="0">
>
> we DON'T need:
> - extract image location from QueryString etc.
>
>
> We NEED the (nearly complete) code for the following
> things:
> a) open an image
> b) add copyright text to the image
> c) "stream" this image to the browser so the code above
> can be done.
>
> Even more cool it would be if you could tell me:
> - how to add a half transparent graphic instead of plain
> text?
>
>
> Thank you
> Michael