-
Notifications
You must be signed in to change notification settings - Fork 219
Examples
Christoph Burgmer edited this page Aug 30, 2021
·
8 revisions
var canvas = document.getElementById("canvas"),
html = "<span>Some HTML</span>";
rasterizeHTML.drawHTML(html, canvas);
Demo: https://jsfiddle.net/cburgmer/E8fb2/1690/
var canvas = document.getElementById("canvas"),
context = canvas.getContext('2d'),
html = "<span>Some more HTML</span>";
rasterizeHTML.drawHTML(html).then(function (renderResult) {
context.drawImage(renderResult.image, 10, 25);
});