我有一个input-> type->文件按钮,允许用户上传图片。 我想在他们提交(上传)之前预览图像。任何人都可以帮我解决,我怎样才能重新调整图像大小(在点击提交之前)以适合div(用于预览)。
CSS
#preview_box{
margin-top:10px;
margin-left:10px;
float:left;
display:inline;
text-align:center;
height:408px;
width:490px;
position:relative;
border: 1px solid #adadad; /* stroke */
background-color: #fff; /* layer fill content */
-moz-box-shadow: 0 1px 6px rgba(0,0,0,.22); /* drop shadow */
-webkit-box-shadow: 0 1px 6px rgba(0,0,0,.22); /* drop shadow */
box-shadow: 0 1px 6px rgba(0,0,0,.22); /* drop shadow */
}
HTML
<div id="preview_box">This is a preview</div>
<form id="imageform" enctype="multipart/form-data" method="post" action="/help/upload.php">
<input name="photoimg" id="photoimg" type="file"/>
</form>
jquery的
$("input[name='photoimg']").on("change", function(){
var files = !!this.files ? this.files : [];
// If no files were selected, or no FileReader support, return
if ( !files.length || !window.FileReader ) return;
// Only proceed if the selected file is an image
if ( /^image/.test( files[0].type ) ) {
// Create a new instance of the FileReader
reader = new FileReader();
// Read the local file as a DataURL
reader.readAsDataURL( files[0] );
// When loaded, set image data as background of page
reader.onloadend = function(){
$("#preview_box").css("background-image", "url(" + this.result + ")");
}
}
});
感谢。 (如果我可以在重新调整图像大小时保持宽高比,那将会很棒)
答案 0 :(得分:0)
...在上传前预览
可以在大多数浏览器的最新版本中完成。参见:
is it possible to preview local images before uploading them via a form?
但是,为了向后兼容,我建议您通过ajax上传图像并在单独的对话框中执行图像调整大小+裁剪。