Skip to content

Commit

Permalink
fix(browser): Make data uri be returned as actual URI strings (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
breautek authored Oct 27, 2024
1 parent 2eaa9a3 commit 5379545
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/browser/CameraProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function takePicture (success, error, opts) {

const imageData = readerEvent.target.result;

return success(imageData.substr(imageData.indexOf(',') + 1));
return success(imageData);
};

reader.readAsDataURL(inputEvent.target.files[0]);
Expand Down Expand Up @@ -78,8 +78,7 @@ function capture (success, errorCallback, opts) {
canvas.getContext('2d').drawImage(video, 0, 0, targetWidth, targetHeight);

// convert image stored in canvas to base64 encoded image
let imageData = canvas.toDataURL('image/png');
imageData = imageData.replace('data:image/png;base64,', '');
const imageData = canvas.toDataURL('image/png');

// stop video stream, remove video and button.
// Note that MediaStream.stop() is deprecated as of Chrome 47.
Expand Down

0 comments on commit 5379545

Please sign in to comment.