rn-perfect-sketch-canvas icon indicating copy to clipboard operation
rn-perfect-sketch-canvas copied to clipboard

How to save a draw as a PNG Image?

Open luflopes opened this issue 1 year ago • 0 comments

At first, thank you so much for the wonderfull work in this library. I've searched for a way to use .toImage() method to get and save a PNG file, I failed on try it. Please, could you explain by an example, how can i use this method?

Below, the code that I used, but it crash the expo app.

const SaveImage = () => { const image = canvasRef.current?.toImage(); if (image) { console.log(image) } };

luflopes avatar Apr 13 '23 11:04 luflopes