当用户上传图像时,如何将图像上传到画布

时间:2012-11-22 15:02:42

标签: php html5 canvas

  

可能重复:
  importing image on canvas html5

我的问题:

我想让用户上传图片,当他们上传图片文件时,它会自动将其显示在画布元素中。

到目前为止我的代码:

<html>
<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>
<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(500)
                        //.height(500);
                };

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



</script>
<meta charset=utf-8 />
<title>JS Bin</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);" /> <br> <br>
    <img id="blah" src="#" alt="your image" />


<?php



?>
</body>
</html>

0 个答案:

没有答案