terrylinla / react-native-sketch-canvas

A React Native component for drawing by touching on both iOS and Android.
MIT License
691 stars 450 forks source link

How to set base64 image to Canvas? #223

Open muditsen opened 2 years ago

muditsen commented 2 years ago

Need a method which can set Base64 image to canvas.

Morpheus-W commented 2 years ago

I have the same problem

muditsen commented 2 years ago

i think you can pass around getPaths() array.

Morpheus-W commented 2 years ago

i think you can pass around getPaths() array.

you solved the problem?

muditsen commented 2 years ago

i wanted to send the canvas data over a web socket. I thought of converting the canvas to base64 on client and then send it to server and again set the base64 canvas on other clients which was not possible so i only sent the data which I was able to set on the canvas on the other clients.

DavidNgugi commented 1 year ago

Hey @muditsen, did you solve this?