vote up 1 vote down star
1

I found this web site (photoblog) http://www.OneReaction.net/

and I am very curious how this is done: 1) From source code you don't see the image URL 2) How to overlay the copyright information on the image without changing the underlying photo?

Ideas? Thanks!

flag

44% accept rate

3 Answers

vote up 4 vote down check

Check this link: Watermarking Images in ASP.NET with an HttpHandler. It describes a technique for adding watermarks to every image of your site. By changing the path of the HttpHandler in the web.config to something less general (e.g. /photos/*.jpg), you can constraint the effect to a subset of images.

link|flag
vote up 2 vote down

I believe that the ImageHandler.ashx is intercepting the requests and placing the copyright information into the image before delivering it to the browser. The handler is likely set up to capture all attempts to browse to a .jpg file.

The documentation on the drawing namespace should help you figure out the actual code for inserting text into an image.

link|flag
vote up 0 vote down

The URL is in source code

<img id="image" title="Condemned to Contrast II" src="Resources/ImageHandler.ashx" 
    alt="Condemned to Contrast II" style="border-width:0px;" />

Try this link

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.