Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
jdenticonplugin.cpp 297 B
#include "jdenticonplugin.h"
#include "identicon.h"

QString
JdenticonPlugin::generate(const QString &message, uint16_t size)
{
    QByteArray byteArr = QByteArray::fromStdString(message.toStdString());
    Identicon identicon(byteArr, size);
    return identicon.generateSvg(identicon, false);
}