Canvas_Export
title: How to export a canvas into an image from react-konva? layout: react_page
How to save a drawing from react-konva?
To export any Konva
node into an image you can either use the node.toDataURL() or the node.toImage() API. Take a look into the vanilla Konva image export demo.
You will need to use the Refs API to access a Konva
node directly in order to call these methods.