Php 选择过滤器后上传图像

Php 选择过滤器后上传图像,php,javascript,jquery,filter,Php,Javascript,Jquery,Filter,他说:“我这里有一个脚本,用户可以选择一个filder,但是当他们选择了一个filder,脚本将图片发送到一个php脚本,这样我就可以上传到服务器上时,我怎么做呢?” $(function() { /* In this code, we are going to do the following: 1. Accept an image on drag and drop 2. Create a new canvas element (or

他说:“我这里有一个脚本,用户可以选择一个filder,但是当他们选择了一个filder,脚本将图片发送到一个php脚本,这样我就可以上传到服务器上时,我怎么做呢?”

$(function() {

    /*
        In this code, we are going to do the following:

        1. Accept an image on drag and drop
        2. Create a new canvas element (original), with a max size
           of 500x500px (customizable) and keep it in memory
        3. Listen for clicks on the filters. When one is selected:
                3.1 Create a clone of the original canvas
                3.2 Remove any canvas elements currently on the page
                3.3 Append the clone to the #photo div
                3.4 If the selected filter is different from the "Normal"
                    one, call the Caman library. Otherwise do nothing.
                3.5 Mark the selected filter with the "active" class
        4. Trigger the "Normal" filter

    */

    var maxWidth = 500,
        maxHeight = 500,
        photo = $('#photo'),
        originalCanvas = null,
        filters = $('#filters li a'),
        filterContainer = $('#filterContainer');

    // Use the fileReader plugin to listen for
    // file drag and drop on the photo div:

    photo.fileReaderJS({
        on:{
            load: function(e, file){

                // An image has been dropped.

                var img = $('<img>').appendTo(photo),
                    imgWidth, newWidth,
                    imgHeight, newHeight,
                    ratio;

                // Remove canvas elements left on the page
                // from previous image drag/drops.

                photo.find('canvas').remove();
                filters.removeClass('active');

                // When the image is loaded successfully,
                // we can find out its width/height:

                img.load(function() {

                    imgWidth  = this.width;
                    imgHeight = this.height;

                    // Calculate the new image dimensions, so they fit
                    // inside the maxWidth x maxHeight bounding box

                    if (imgWidth >= maxWidth || imgHeight >= maxHeight) {

                        // The image is too large,
                        // resize it to fit a 500x500 square!

                        if (imgWidth > imgHeight) {

                            // Wide
                            ratio = imgWidth / maxWidth;
                            newWidth = maxWidth;
                            newHeight = imgHeight / ratio;

                        } else {

                            // Tall or square
                            ratio = imgHeight / maxHeight;
                            newHeight = maxHeight;
                            newWidth = imgWidth / ratio;

                        }

                    } else {
                        newHeight = imgHeight;
                        newWidth = imgWidth;
                    }

                    // Create the original canvas.

                    originalCanvas = $('<canvas>');
                    var originalContext = originalCanvas[0].getContext('2d');

                    // Set the attributes for centering the canvas

                    originalCanvas.attr({
                        width: newWidth,
                        height: newHeight
                    }).css({
                        marginTop: -newHeight/2,
                        marginLeft: -newWidth/2
                    });

                    // Draw the dropped image to the canvas
                    // with the new dimensions
                    originalContext.drawImage(this, 0, 0, newWidth, newHeight);

                    // We don't need this any more
                    img.remove();

                    filterContainer.fadeIn();

                    // Trigger the default "normal" filter
                    filters.first().click();
                });

                // Set the src of the img, which will
                // trigger the load event when done:

                img.attr('src', e.target.result);
            },

            beforestart: function(file){

                // Accept only images.
                // Returning false will reject the file.

                return /^image/.test(file.type);
            }
        }
    });

    // Listen for clicks on the filters

    filters.click(function(e){

        e.preventDefault();

        var f = $(this);

        if(f.is('.active')){
            // Apply filters only once
            return false;
        }

        filters.removeClass('active');
        f.addClass('active');

        // Clone the canvas
        var clone = originalCanvas.clone();

        // Clone the image stored in the canvas as well
        clone[0].getContext('2d').drawImage(originalCanvas[0],0,0);


        // Add the clone to the page and trigger
        // the Caman library on it

        photo.find('canvas').remove().end().append(clone);

        var effect = $.trim(f[0].id);

        Caman(clone[0], function () {

            // If such an effect exists, use it:

            if( effect in this){
                this[effect]();
                this.render();

                // Show the download button
                showDownload(clone[0]);
            }
            else{
                hideDownload();
            }
        });

    });

    // Use the mousewheel plugin to scroll
    // scroll the div more intuitively

    filterContainer.find('ul').on('mousewheel',function(e, delta){

        this.scrollLeft -= (delta * 50);
        e.preventDefault();

    });

    var downloadImage = $('a.downloadImage');

    function showDownload(canvas){


        downloadImage.off('click').click(function(){

            // When the download link is clicked, get the
            // DataURL of the image and set it as href:

            var url = canvas.toDataURL("image/png;base64;");
            downloadImage.attr('href', url);

        }).fadeIn();

    }

    function hideDownload(){
        downloadImage.fadeOut();
    }

});
$(函数(){
/*
在此代码中,我们将执行以下操作:
1.通过拖放接受图像
2.创建一个最大尺寸的新画布元素(原始)
500x500px(可定制),并将其保存在内存中
3.倾听过滤器上的点击。选择一个过滤器时:
3.1创建原始画布的克隆
3.2删除页面上当前的所有画布元素
3.3将克隆附加到#photo div
3.4如果所选过滤器不同于“正常”
第一,给卡曼图书馆打电话,否则什么也不做。
3.5用“激活”等级标记所选过滤器
4.触发“正常”过滤器
*/
var maxWidth=500,
最大高度=500,
照片=$(“#照片”),
originalCanvas=null,
filters=$(“#filters li a”),
filterContainer=$(“#filterContainer”);
//使用fileReader插件来侦听
//在photo div上拖放文件:
photo.fileReaderJS({
关于:{
加载:函数(e,文件){
//图像已被删除。
var img=$('试试这个


…picture true一个php脚本..
?“通过”?是的,我想选择过滤器而不是通过phpWelcome上传到StackOverflow!请了解这里要问什么类型的问题。一般来说,我们喜欢将问题缩小到单个特定问题和一小段代码。