Reputation: 86015
Is there a way to render Canvas in offscreen into HTML IMAGE element?
Upvotes: 4
Views: 955
Reputation: 5922
img.src = canvas.toDataURL();
where img
and canvas
are the respective element object (from document.getElementByElement(...)
).
Upvotes: 5