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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵