原生js基于canvas實現(xiàn)一個簡單的前端截圖工具代碼實例
更新時間:2019年09月10日 09:33:21 作者:muamaker
這篇文章主要介紹了原生js基于canvas實現(xiàn)一個簡單的前端截圖工具代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
這篇文章主要介紹了原生js基于canvas實現(xiàn)一個簡單的前端截圖工具代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
先看效果
代碼如下
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{ padding: 0; margin: 0; } .clip-img-w{ position: relative; width: 100%; height: 100%; font-size: 0; } .clip-img-w img{ max-width: 100%; max-height: 100%; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; } .clip-img-w canvas{ position: absolute; left: 0; top: 0; } .clip-img-w #clipcanvas{ z-index: 2; } .clip-img-w #drawcanvas{ background: #fff; z-index: 1; } #img{ display: block; margin: 0 auto; } .box-c{ width: 400px; height: 200px; border: 1px solid #F35252; margin: 20px auto; } </style> </head> <body> <div class="box-c"> <div class="clip-img-w" id="clip-img-w"> <canvas id="drawcanvas" ></canvas> <canvas id="clipcanvas" ></canvas> </div> </div> <!-- 結果 --> <img src="" id="img"> </body> <script type="text/javascript"> var img = document.getElementById("img"); var url = 'http://img.muchengfeng.cn/FvC7i-GkXYoHE7kGFlNfj7xEzvIQ'; var wrap = document.getElementById("clip-img-w"); var width = wrap.offsetWidth; var height = wrap.offsetHeight; var clipcanvas = document.getElementById("clipcanvas"); var drawcanvas = document.getElementById("drawcanvas"); clipcanvas.width = width; clipcanvas.height = height; drawcanvas.width = width; drawcanvas.height = height; var clipCtx = drawcanvas.getContext("2d"); var clipImg = document.createElement("img"); clipImg.crossOrigin = "anonymous"; clipImg.src = url; var timg = clipImg.cloneNode(); wrap.appendChild(clipImg); clipImg.onload = function(){ var x = Math.floor((width - this.width)/2); var y = Math.floor((height - this.height)/2); clipCtx.drawImage(this,0,0,timg.width,timg.height,x,y,this.width,this.height); } var ctx = clipcanvas.getContext("2d"); ctx.fillStyle = 'rgba(0,0,0,0.6)'; ctx.strokeStyle="green"; var start = null; var clipArea = {};//裁剪范圍 clipcanvas.onmousedown = function(e){ start = { x:e.offsetX, y:e.offsetY }; } clipcanvas.onmousemove = function(e){ if(start){ fill(start.x,start.y,e.offsetX-start.x,e.offsetY-start.y) } } document.addEventListener("mouseup",function(){ if(start){ start = null; var url = startClip(clipArea); img.src= url; } }) function fill(x,y,w,h){ ctx.clearRect(0,0,width,height); ctx.beginPath(); //遮罩層 ctx.globalCompositeOperation = "source-over"; ctx.fillRect(0,0,width,height); //畫框 ctx.globalCompositeOperation = 'destination-out'; ctx.fillRect(x,y,w,h); //描邊 ctx.globalCompositeOperation = "source-over"; ctx.moveTo(x,y); ctx.lineTo(x+w,y); ctx.lineTo(x+w,y+h); ctx.lineTo(x,y+h); ctx.lineTo(x,y); ctx.stroke(); ctx.closePath(); clipArea = { x, y, w, h }; } function startClip(area){ var canvas = document.createElement("canvas"); canvas.width = area.w; canvas.height = area.h; var data = clipCtx.getImageData(area.x,area.y,area.w,area.h); var context = canvas.getContext("2d"); context.putImageData(data,0,0); return canvas.toDataURL("image/png"); } </script> </html>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
[js高手之路]單例模式實現(xiàn)模態(tài)框的示例
下面小編就為大家?guī)硪黄猍js高手之路]單例模式實現(xiàn)模態(tài)框的示例。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-09-09詳解全棧開發(fā)Vercel數(shù)據(jù)庫存儲服務
這篇文章主要為大家介紹了全棧開發(fā)Vercel數(shù)據(jù)庫存儲服務功能使用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-05-05使用jsonp實現(xiàn)跨域獲取數(shù)據(jù)實例講解
這篇文章主要介紹了使用jsonp實現(xiàn)跨域獲取數(shù)據(jù)實例講解,需要的朋友可以參考下2016-12-12兩種WEB下的模態(tài)對話框 (asp.net或js的分別實現(xiàn))
在如今互聯(lián)網網站上,AJAX效果風靡一時,應該說AJAX技術在未來幾年不會動搖,在AJAX效果中,模態(tài)對話框是比較常見的效果,也是非常適用的。2009-12-12