{
const context = DOM.context2d(
400 ,
150
);
let bc = jsbarcode(context.canvas, value, {
'text': value.match(/.{1,4}/g).join (" ")
});
return html`<img height="300px" src="http://cdn2.dineroenimagen.com/media/dinero/styles/xlarge/public/images/2019/05/que-significa-logo-del-oxxo.jpg"><br>${context.canvas}`
}