webcam-easy icon indicating copy to clipboard operation
webcam-easy copied to clipboard

save to base64

Open Dokhra opened this issue 4 years ago • 1 comments

Hello,

thank you - good work! i like it very much! is it possible to get the picture as a base64 encoded variable, f.e. saving the picture to a database.

Best Regard, Martin

Dokhra avatar Jan 05 '21 15:01 Dokhra

@Dokhra - you can already do this.

let picture = this.webcam.snap();

console.log(picture)
=> data:image/png;base64,iVBORw0KGgoAAAANSUh...

Bergrebell avatar May 18 '21 13:05 Bergrebell