Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the jquery uploader http://blueimp.github.com/jQuery-File-Upload/ to upload files to my website, the problem I am having is that I cant seem to get the thumbnails any bigger than they are from the default resize.

I have tried using the code below off here https://github.com/blueimp/jQuery-File-Upload/wiki/Upload-multiple-resolutions-of-one-image-with-multiple-resize-options

but it doesn't appear to do anything. I am putting the code below into my index.php Am I missing some other settings somewhere for this ?.

$.blueimpFP.fileupload.prototype.processActions.duplicate = function (data, options) {
data.files.push(data.files[data.index]);
return data;
};
 $('#fileupload').fileupload({
process: [
    {
        action: 'load',
        fileTypes: /^image\/(gif|jpeg|png)$/,
        maxFileSize: 20000000 // 20MB
    },
    {
        action: 'resize',
        maxWidth: 1920,
        maxHeight: 1200
    },
    {action: 'save'},
    {action: 'duplicate'},
    {
        action: 'resize',
        maxWidth: 1280,
        maxHeight: 1024
    },
    {action: 'save'},
    {action: 'duplicate'},
    {
        action: 'resize',
        maxWidth: 1024,
        maxHeight: 768
    },
    {action: 'save'}
]
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.