eonil
eonil

Reputation: 86015

Can I render and set HTML5 canvas into HTML IMAGE's source?

Is there a way to render Canvas in offscreen into HTML IMAGE element?

Upvotes: 4

Views: 955

Answers (1)

timdream
timdream

Reputation: 5922

img.src = canvas.toDataURL();

where img and canvas are the respective element object (from document.getElementByElement(...)).

Upvotes: 5

Related Questions