Project DescriptionThis is a .NET port of Don Park's Identicon concept.
What Is This?
An
Identicon is a small, anonymized visual glyph that represents a hash of an IP address. This project is a .NET port of Don Park's original identicon Java project.
Usage
Using this is simple. Drop the Identicon.dll in your bin directory for your website. Add the file named IdenticonHandler.ashx to your web project.
Create image tags with the following format.
<img src="IdenticonHandler.ashx?code=
CODE&size=80" width="80" height="80" alt="Identicon" />
The code can be generated via a call to the method:
IdenticonUtil.Code(request.UserHostAddress)
Store the generated code in your database along with the comment or item it is associated with and use that code when rendering your image tag later.
Download
Version 1.1 just released:
1.1 ProductionRelated