A javascript library for generating [DID](https://github.com/ArcBlock/ABT-DID-Protocol) identicons.
npm install @arcblock/did-motifA javascript library for generating DID identicons.
``bash`
npm i @arcblock/did-motifOr Yarn
yarn add @arcblock/did-motif
render DID Motif:
` js
import { update } from '@arcblock/did-motif';
const element = document.getElementById('my-canvas');
// or const element = document.getElementById('my-svg');
update(element, 'z35n6X6rDp8rWWCGSiXZgvd42bixdLULmX8oX', { size: 36 });
`
render DID Motif with animation:
` js
import { update } from '@arcblock/did-motif';
const element = document.getElementById('my-canvas');
// or const element = document.getElementById('my-svg');
update(element, 'z35n6X6rDp8rWWCGSiXZgvd42bixdLULmX8oX', { size: 36, animation: true });
`
use toDataURL to convert a DID to an image data URL, we can assign the DataURL as the value of the src attribute of element.
` js
import { toDataURL } from '@arcblock/did-motif';
const img = document.getElementById('my-img');
img.src = toDataURL({ did: 'z35n6X6rDp8rWWCGSiXZgvd42bixdLULmX8oX', size: 36 });
`
See more examples and options of working with @arcblock/did-motif` here.
Copyright 2018-2022 ArcBlock
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.