Skip to content

Instantly share code, notes, and snippets.

View lennis-dev's full-sized avatar
🤔
everything but nothing

Lennis lennis-dev

🤔
everything but nothing
View GitHub Profile
@lennis-dev
lennis-dev / uniqueImage.php
Last active June 1, 2024 14:52
Function for creating Identicons.
<?php
/**
* Generate a unique Image based on a input string
* @param string $data
* @return string A SVG image
*/
function unique_img(string $data, string $background = "#000"): string
{
$hash = hash("sha512", $data);
$svg_data = '<rect x="0" y="0" width="128" height="128" fill="' . $background . '" />';