HTML5 Canvas 实现本地压缩图片

来源:互联网 发布:软件技术优势怎么写 编辑:程序博客网 时间:2024/05/01 09:11
<!DOCTYPE html>
<html>
<body>
<p>要使用的图片:</p>

<img src="/i/eg_tulip.jpg" alt="tulip" id="tulip" style="margin-left:0px;" />

<p>Canvas:</p>

<canvas id="myCanvas" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script>
document.getElementById("tulip").onload=function(){
  var c=document.getElementById("myCanvas");
  var ctx=c.getContext("2d");
  var img=document.getElementById("tulip");
  ctx.drawImage(img,0,0,img.width,img.height,0,0,300,150);<!-- 这里将原图等比例压缩为300*150-->
};
</script>
</body>
</html>
0 0