This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A CanvasRenderingContext2D implementation containing the subset required by Jdenticon | |
* for generating svg files. | |
* @license zlib (http://opensource.org/licenses/Zlib) | |
* @copyright Daniel Mester Pirttijärvi 2015 | |
* @constructor | |
*/ | |
function SvgContext(width, height) { | |
this._svg = '<svg width="' + width + '" height="' + height + |