I am using react-webcam for capturing picture. I got the captured image in Base 64. I want to convert it into Blob
capture = () => {
const imageSrc = this.webcam.getScreenshot();
Blob imageFile = someFunction(imageSrc) // want this code
this.setState({
imgsource: imageFile
});
};