我有一个表单,您可以从硬盘中选择一张图片 选择了它在同一页面上即时显示的图片。
我想在缩略图演示中使用此图片: 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,任何想法一起使用?
答案 0 :(得分:0)
您必须将图像保存在临时文件夹中,因为JCrop通过获取原始图像并将其克隆到发生魔术的自定义容器中来工作。
因此,您使用php将POSTed图像保存在tmp文件夹中,然后将其输出到<img>
<div id = 'cropbox'>
(每个示例),然后$('#cropbox').Jcrop()
。