AJAX를 통해 비디오를 읽은 후 blob을 IndexedDB에서 Chrome unsupport blobs에 대한 해결책을 작성하는 동안 AJAX를 통해 어레이 버퍼로 이미지를 읽고 IndexedDB에 저장하여 추출한 후 blob으로 변환한 후 다음 코드를 사용하여 요소에 표시할 수 있음을 발견했습니다. var xhr = new XMLHttpRequest(),newphoto; xhr.open("GET", "photo1.jpg", true); xhr.responseType = "arraybuffer"; xhr.addEventListener("load", function () { if (xhr.status === 200) { newphoto = xhr.response; /* store "newphoto" i..