dongxuan2577 2013-04-03 06:24
浏览 49
已采纳

plupload会破坏图像

Im using the plupload.com/example_queuewidget.php jquery widget - but some images (mainly jpegs over 1MB) get uploaded but I can not open them. Even when manually downloading them via ftp - they are corrupted/broken. Has anyone ever had a similar problem and knows how to fix this?

Edit: Images work before uploading them.

Using the code from the example:

$("#uploader").pluploadQueue({
    // General settings
    runtimes : 'flash,gears,silverlight,browserplus,html5',
    url : '../../upload.php',
    max_file_size : '6mb',
    chunk_size : '1mb',
    unique_names : true,

    // Specify what files to browse for
    filters : [
        {title : "Image files", extensions : "jpg,gif,png"}
    ],

    // Flash settings
    flash_swf_url : '/assets/script/plupload/plupload.flash.swf',

    // Silverlight settings
    silverlight_xap_url : '/assets/script/plupload/plupload.silverlight.xap'

});



// Client side form validation
$('form#galerie_upload').submit(function(e) {
    var uploader = $('#uploader').pluploadQueue();

    // Files in queue upload them first
    if (uploader.files.length > 0) {
        // When all files are uploaded submit form
        uploader.bind('StateChanged', function() {
            if (uploader.files.length === (uploader.total.uploaded + uploader.total.failed)) {
                $('form#galerie_upload')[0].submit();
            }
        });

        uploader.start();
    } else {
        alert('You must queue at least one file.');
    }

    return false;
});

upload.php is the example upload.php from here

Hope someone stumbled over this already.

have a nice day!

  • 写回答

1条回答 默认 最新

  • dsfo22654 2013-04-16 09:56
    关注

    Mistake was in another script, that cut the images after they had been uploaded. Code as I posted it works!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?