moxiecode / moxie

Pollyfills for XHR2 and File API
GNU Affero General Public License v3.0
483 stars 134 forks source link

Image preview error #182

Open XPLing opened 6 years ago

XPLing commented 6 years ago

When I used the new mOxie.image.Image () method, the picture went wrong all the time, and the error was not clear. The code is as follows ` var preloader = new mOxie.image.Image();

            preloader.onload = function () {             
                var imgsrc = preloader.type == 'image/jpeg' ? preloader.getAsDataURL('image/jpeg', 80) : preloader.getAsDataURL();
                preloader.destroy();
                preloader = null;
            };
            preloader.onerror = function (e) {
                console.log(e);
            };
            preloader.load(file.getSource());`

file is a object: image After running, the program has been going into the onerror,and error is as follows image Please help you, thank you.

Lunziyuan commented 4 years ago

same with you. plupload + moxie

Lunziyuan commented 4 years ago

fixd by this. https://github.com/moxiecode/plupload/issues/1469#issuecomment-320438490