PassionateDeveloper
PassionateDeveloper

Reputation: 15158

ASP.Net - Email to image?

In my project I have a lot of email addresses on static sites.

Is there an algorithm to display the emails as images, so bots can't find them?

Upvotes: 1

Views: 85

Answers (1)

Ed B
Ed B

Reputation: 6054

Yes, it's pretty easy to create an image from text:

http://chiragrdarji.wordpress.com/2008/05/09/generate-image-from-text-using-c-or-convert-text-in-to-image-using-c/

Use a generic handler (.ashx) file to output an image. Then link to the handler from your page..and it will show up as an image.

Upvotes: 1

Related Questions