-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added NuGet readme file to the Jdenticon-net package.
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
*************************************************************** | ||
* JDENTICON-NET | ||
*************************************************************** | ||
|
||
Use the Identicon class to generate an identicon: | ||
|
||
using Jdenticon; | ||
// ... | ||
Identicon | ||
.FromValue("string to hash", size: 160) | ||
.SaveAsPng("test.png"); | ||
|
||
The save operations are implemented as extension methods so remember | ||
to include a using for the Jdenticon namespace. | ||
|
||
Also consider the following NuGet packages if they are relevant for | ||
your application: | ||
|
||
* Jdenticon.AspNet.Mvc | ||
|
||
* Jdenticon.AspNet.WebApi | ||
|
||
* Jdenticon.AspNet.WebForms | ||
|
||
* Jdenticon.Gdi | ||
If you want to render icons in a WinForms application. | ||
|
||
* Jdenticon.Wpf | ||
|
||
Full documentation is available at | ||
https://dmester.github.io/jdenticon-net-docs/html/N_Jdenticon.htm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters