import { UiAvatars } from "ui-avatars";
import fs from "fs";
const avatarOptions = {
name: "Jane Doe",
size: 128,
background: "ff5733",
color: "ffffff",
rounded: true,
};
const avatarGenerator = new UiAvatars(avatarOptions);
avatarGenerator
.downloadAvatar()
.then(({ url, image }) => {
fs.writeFileSync("avatar.png", image);
console.log("Avatar downloaded from:", url);
})
.catch((error) => {
console.error("Error downloading avatar:", error.message);
});
constructor(options?: UiAvatarsSettingsType)
options: An optional object to configure default avatar settings. See UiAvatarsSettingsType for available options.
Methods
createUrl(options?: UiAvatarsSettingsType): string
Generates a URL for the avatar image with the specified settings.
options: An optional object to override the default settings.
Returns: A string URL to request the avatar image.
downloadAvatar(options?: UiAvatarsSettingsType): Promise<{ url: string; image: Buffer }>
Downloads the avatar image and returns the URL and image buffer.
options: An optional object to override the default settings.
Returns: A promise that resolves to an object containing:
url: The URL used to request the avatar image.
image: The image data as a Buffer.
downloadAvatarByUrl(url: string): Promise<{ url: string; image: Buffer }>
Downloads the avatar image and returns the URL and image buffer.
url: string;
Returns: A promise that resolves to an object containing:
url: The URL used to request the avatar image.
image: The image data as a Buffer.