如何使用React JS将Base64字符串的图像转换为Blob?

时间:2019-02-13 13:16:32

标签: java spring reactjs spring-boot

我正在使用react-webcam捕获图片。我在Base 64中获得了捕获的图像。我想将其转换为Blob

  capture = () => {

    const imageSrc = this.webcam.getScreenshot();
    Blob imageFile = someFunction(imageSrc) // want this code
    this.setState({
      imgsource: imageFile 
    });
  };

1 个答案:

答案 0 :(得分:0)

有很多方法可以解决这个问题。您可以查看以下解决方案: