上传和裁剪前的图像预览

时间:2013-12-28 19:27:40

标签: javascript jquery

我正在制作一个允许管理员上传图片的表单。这张图片我希望他们能够在上传之前进行预览。它将显示为特定大小,并且他们将能够单击图像以打开页面窗口进行裁剪。

JQuery Image Crop:http://jsfiddle.net/UydpR/2/

我的代码,对不起,我试图做一个小提琴,但无法让它工作!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
<meta charset=utf-8 />
<title>Image Test</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
  <input type='file' onchange="readURL(this);" />
    <img id="blah" src="#" alt="your image" />
<script type="text/javascript">
     function readURL(input) {
            if (input.files && input.files[0]) {
                var reader = new FileReader();

                reader.onload = function (e) {
                    $('#blah')
                        .attr('src', e.target.result)
                        .width(150)
                        .height(200);
                };

                reader.readAsDataURL(input.files[0]);
            }
        }
</script>
</body>
</html>

我还希望显示默认显示内容,而不是找不到图像的标识。我会说“没有图像上传”或其他什么。

感谢您提前获取任何帮助, 应当称颂, 添

1 个答案:

答案 0 :(得分:0)

这是在Web浏览器中加载图像以进行预览的示例。我希望能帮到你

 <script>

function readImage(input) {
    if ( input.files && input.files[0] ) {
        var FR= new FileReader();
        FR.onload = function(e) {
             $('#img').attr( "src", e.target.result );
             //$('#base').text( e.target.result ); //this is the base64 encoded image
             var img = e.target.result;





        };       
        FR.readAsDataURL( input.files[0] );
    }
}


</script>

<input type='file' id="asd" onchange="readImage( this )"/>
<img id="img" src="" />
<div id="base"></div>