我有一个表格,您可以在其中从硬盘中选择一张图片,当您选择图片时,它会立即显示在同一页面上。
我想在缩略图演示中使用这张图片: 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 一起使用,有什么想法吗?