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 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 Ubuntu20.04无法连接GitHub
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥30 C++行情软件的tick数据如何高效的合成K线