问题描述
我正在使用react-webcam捕获图片。 我在Base 64中获得了捕获的图像。我想将其转换为Blob
capture = () => {
const imageSrc = this.webcam.getScreenshot();
Blob imageFile = someFunction(imageSrc) // want this code
this.setState({
imgsource: imageFile
});
};
1楼
有很多方法可以解决此问题。 您可以查看以下解决方案: