可以使用DataURI作为你的图形资源/**
* 创建 时间展示 svg内容
* @param {Date} date
* @returns {string} 返回svg内容
*/
function create_SVG__DateView(date){
var date_str=`${date.getFullYear()}年${date.getMonth()+1}月${date.getDate()}日`;
// 此处svg内容源自提问中的链接 : https://camo.githubusercontent.com/38addf36de1adf564c9a5ac099668238564ce3065487df2aa3491356ef040a22/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545362539422542342545362539362542302545362539372542362545392539372542342d323032332545352542392542343325453625394325383832332545362539372541352d6c6967687467726579
return `<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="146" height="20" role="img" aria-label="更新时间: ${date_str}"><title>更新时间: ${date_str}</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="146" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="55" height="20" fill="#555"/><rect x="55" width="91" height="20" fill="#9f9f9f"/><rect width="146" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="285" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="450">更新时间</text><text x="285" y="140" transform="scale(.1)" fill="#fff" textLength="450">更新时间</text><text aria-hidden="true" x="995" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="810">${date_str}</text><text x="995" y="140" transform="scale(.1)" fill="#fff" textLength="810">${date_str}</text></g></svg>`;
}
// 字符串转base64
function b64EncodeUnicode(str) {
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function(match, p1) {
return String.fromCharCode('0x' + p1);
}));
}
/** 创建 data URI
* @param {string} head 文件类型头
* @param {string} data 原文数据
*/
function create_DataURI(head,data){ return `data:${head};base64,`+b64EncodeUnicode(data); }
// svg文件的DataURI头为 "image/svg+xml"
console.log(create_DataURI("image/svg+xml", create_SVG__DateView(new Date(Date.now()))));
最后console.log中输出的就是可用的svg的DataURI |