jquery - plupload cannnot resize the big size image? -


i use code     var uploader = new plupload.uploader({     runtimes : 'flash,html5',         browse_button : 'uploader',        container: 'container',        max_file_size : '50000kb',        url : 'uploads.php',        flash_swf_url : './js/plupload-2.3.1/js/moxie.swf',        filters : [         {title : "image files", extensions : "jpg,gif,png"}     ],     resize: {         width: 200,         preserve_headers: false     } }); 

when upload little size image resize work well, when upload big size image resize work bad?(just 2.3mb 2048x1536) can tell me why?


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -