Giter Site home page Giter Site logo

dmester / jdenticon-net Goto Github PK

View Code? Open in Web Editor NEW
80.0 4.0 12.0 10.24 MB

.NET library for generating identicons. Running on .NET Core and other .NET Standard compatible platforms.

Home Page: https://jdenticon.com

License: MIT License

C# 99.79% HTML 0.21%
identicon avatar jdenticon dotnet dotnet-core dotnet-standard dotnet-framework aspnet-mvc aspnetcore wpf

jdenticon-net's People

Contributors

dependabot[bot] avatar dmester avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

jdenticon-net's Issues

Rendering artifacts on some shapes

Hi,
Great library! I realy like it and use it all over my app.
But I notice sometimes rendering artifacts that appear on some kinds of shapes. Here are samples (I hope github won't be compressing the image. click it to view full size):
artifacts

Here is the code I use to generate images:

const int size = 128;
const int value = 0x5D503474; // the value below the samples in the pic above.
Identicon icon = Identicon.FromValue(value, size);
icon.Style.BackColor = Color.Transparent; // the darkgray background in samples is just a WPF window background.
icon.Style.Padding = 0f;

Then i just convert it to bitmap image to be able to display on window:

using (var stream = icon.SaveAsPng())
{
    var bitmapImage = new BitmapImage();
    bitmapImage.BeginInit();
    bitmapImage.CacheOption = BitmapCacheOption.OnLoad;
    bitmapImage.StreamSource = stream;
    bitmapImage.EndInit();
    bitmapImage.Freeze();
    return bitmapImage;
} 

Use in Blazor?

Does someone know how to use this in blazor wasm?

Ideally, to generate the image and insert it into the DOM, without an intermediate image file.

Generate avatar using initials

Similar to Microsoft Teams and TFS.
When user does not upload its avatar, the system generates one based on the user name, using their initials

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.