Topic: do not resize, quality:100 causes problems.

I don't want to resize the images on client side.
When I remove this line :

resize : {width : 320, height : 240, quality : 90},

both FF and IE freezes up. This is my set up:

$("#uploader").pluploadQueue({
            // General settings
            runtimes : 'gears,flash,silverlight,browserplus,html5',
            url : <cfoutput>'myURL.cfm?vw=saveImage&projectID=#projectID#'</cfoutput>,
            max_file_size : '10mb',
            unique_names : false,
           
            // Resize images on clientside if we can
            resize : {width : 320, height : 240, quality : 90},
           
            // Specify what files to browse for
            filters : [
                {title : "Image files", extensions : "jpg,gif,png"}
            ],
   
            // Flash settings
            flash_swf_url : 'scripts/plupload.flash.swf',
   
            // Silverlight settings
            silverlight_xap_url : 'scripts/plupload.silverlight.xap'
        });

Another problem I am having is with the quality param in resize. If i set it to 100, some of my images do not upload completely. Say I see 70%. When I open the image, I see bottom of the images replaced with some gray background.

I tried using both minimized and full versions and had the same problem. Also, I am trying to refresh the page after all the images uploaded. I tried using this :

init : {
                FileUploaded: function(up, file, info) {
                    // Called when upload shim is moved
                   window.location.reload();
                    }
            }

but had no luck.
Any help?

Re: do not resize, quality:100 causes problems.

Try a recompiled swf from here: https://github.com/moxiecode/plupload/i … nt-2880772 and check if it helps to neutralize hang problem. Do not forget to purge your browser's cache.

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: do not resize, quality:100 causes problems.

i did not want to resize and removing the line was not uploading the images.

So i just changed the values to 0 and all works OK.

resize : {width : 0, height : 0, quality : 100},