最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - turning canvas.toDataURL DOMString url into a blob, - Stack Overflow

matteradmin13PV0评论

i am using cropperjs to crop images

Using the method getCroppedCanvas to get reference to the cropped canvas image

Using the canvas method canvas.toDataURL to press the images into a jpeg files.

I don't use canvas.toBlob as its browser support is not clear.

My question is how can i turn the string i get from canvas.toDataURL into a blob so i can later use it in formData.

Update

server expect form data - multi-part

i am using cropperjs to crop images

Using the method getCroppedCanvas to get reference to the cropped canvas image

Using the canvas method canvas.toDataURL to press the images into a jpeg files.

I don't use canvas.toBlob as its browser support is not clear.

My question is how can i turn the string i get from canvas.toDataURL into a blob so i can later use it in formData.

Update

server expect form data - multi-part

Share Improve this question edited Jul 13, 2017 at 10:56 Neta Meta asked Jul 13, 2017 at 10:49 Neta MetaNeta Meta 4,04710 gold badges47 silver badges71 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

One method that I used while working on some tool is to convert the dataURL to Blob using this function:

function dataURLtoBlob(dataurl) {
    var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1],
        bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
    while(n--){
        u8arr[n] = bstr.charCodeAt(n);
    }
    return new Blob([u8arr], {type:mime});
}

And then you can send the Blob to the server using native xhr like this:

var blob = dataURLtoBlob(dataURI);
var fd = new FormData();
var xhr = new XMLHttpRequest ();

fd.append ('file', blob);
xhr.open('POST', '/endpoint', true);

xhr.onerror = function () {
    console.log('error');
}

xhr.onload = function () {
    console.log('success')
}

xhr.send (fd);

The blob builder code is taken from here: https://stackoverflow./a/30407840/2386736

use canvas.toDataURL to generate an JPEG image:

var JPEG_QUALITY=0.5;
var dataUrl = canvas.toDataURL('image/jpeg', JPEG_QUALITY).replace('data:image/jpeg;base64,', '');

And then send it to AJAX as data-multi-part:

jQuery.ajax({
    url: 'php/upload.php',
    data: dataUrl,
    cache: false,
    contentType: false,
    processData: false,
    type: 'POST',
    success: function(data){            
    }
});

Depending on what your server side expects to receive.

By the way: You wrote "I don't use canvas.toBlob as its browser support is not clear" - You can see the browser support here:

toBlob() is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

const canvas = document.getElementById("canvas");

canvas.toBlob((blob) => {
  const newImg = document.createElement("img");
  const url = URL.createObjectURL(blob);

  newImg.onload = () => {
    // no longer need to read the blob so it's revoked
    URL.revokeObjectURL(url);
  };

  newImg.src = url;
  document.body.appendChild(newImg);
});

Source: https://developer.mozilla/en-US/docs/Web/API/HTMLCanvasElement/toBlob

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far