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