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?