0

我有一个表格,您可以在其中从硬盘中选择一张图片,当您选择图片时,它会立即显示在同一页面上。

我想在缩略图演示中使用这张图片: http ://deepliquid.com/projects/Jcrop/demos.php?demo=thumbnail 我还希望在更改输入文件时更改 jCrop 图像。

到目前为止,这是我的 PHP 文件:

    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <script class="jsbin"   src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
    <script>
    function readURL(input) {
    if (input.files && input.files[0]) {
            var reader = new FileReader();
            reader.onload = function (e) {
                $('#blah')
                    .attr('src', e.target.result)
                    .width(this.width)
                    .height(this.heigt);
            };
            reader.readAsDataURL(input.files[0]);
        }
    }
    </script>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    </head>
    <body>          
    <input type="file" name="image" id="image" onchange="readURL(this)" /><br />
    <label for="image">Image:</label>
    <img id="blah" src="#" alt="your image" />      
    </body>
    </html>

这可以按我的意愿工作,但是我无法解决如何将这张图片与 jCrop 一起使用,有什么想法吗?

4

1 回答 1

0

您必须将图像保存在一个临时文件夹中,因为 JCrop 的工作原理是获取原始图像并将其克隆到发生魔法的自定义容器中。

因此,您使用 php 将发布的图像保存在 tmp 文件夹中,然后将其输出到 a<img><div id = 'cropbox'>(每个示例),然后$('#cropbox').Jcrop().

于 2013-01-26T21:30:47.720 回答