简体   繁体   中英

How to Conver Blob to Image (JPG Format)

i using croper.js for to crop and store a image. following function i use croped blob to convert image format. that function not working properly.

   cropper.getCroppedCanvas().toBlob(function (blob) {
        var formData = new FormData();

        var creimag = document.createElement('img');
        creimag.src = 'data:image/png;base64,'+ blob;
        var processeddata=document.body.appendChild(creimag); 

        formData.append('file', processeddata);
    });

The way you are coding this, you are appending an <img> tag where a file/ Blob is expected.

https://github.com/fengyuanchen/cropperjs#getcroppedcanvasoptions

This page has an example for this use case. You have to append blob to the form. Quote from the example code:

cropper.getCroppedCanvas().toBlob(function (blob) {
  var formData = new FormData();
  formData.append('croppedImage', blob);
  ...

Try URL. createObjectURL

creimag.src = URL.createObjectURL(blob);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM