成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

基于html5中canvas做批改作業(yè)小插件的示例分析-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關(guān)基于html5中canvas做批改作業(yè)小插件的示例分析的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

成都創(chuàng)新互聯(lián)是一家專注于成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)與策劃設(shè)計,永靖網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:永靖等地區(qū)。永靖做網(wǎng)站價格咨詢:18982081108

需求分析


  1. 能進行批改,就是相當(dāng)于畫筆

  2. 能進行畫筆的撤回功能

  3. 能進行全部畫筆的清除功能

  4. 可以轉(zhuǎn)化畫筆的顏色

技術(shù)上的實現(xiàn)思路


在聽到這需求后的第一反應(yīng)就是用canvas來做,所以我在w3school閱讀了 canvas的API .

1.將圖片轉(zhuǎn)到canvas,用到API: drawImage()

2畫筆的實現(xiàn)

  • 當(dāng)按下鼠標(biāo)(mousedown)記錄開始點startX, startY

  • 當(dāng)移動鼠標(biāo)的時候(mousemove)就獲取當(dāng)前的鼠標(biāo)的坐標(biāo)e.clientX, e.clientY,獲取到了當(dāng)前的坐標(biāo)后,與上一個點的坐標(biāo)軸的左邊進行連線(lineTo ),這樣就能畫出了一條橫線了

  • 當(dāng)鼠標(biāo)松開左鍵(mouseup)時候,就清除mousemove的函數(shù)

3.清除功能:講原始的圖片再次用drawImage()函數(shù)來重置
4.撤回功能:在每次按下鼠標(biāo)那時候,用getImageData()函數(shù)獲取當(dāng)前的圖像記錄到數(shù)組里面,然后按撤回則使用putImageData()函數(shù)放在canvas
5.畫筆的顏色:在mousemove里面改變strokeStyle筆的顏色

代碼實現(xiàn)


移動鼠標(biāo)畫出線條的代碼

let self = this;
    this.canvasNode = document.createElement('canvas');
    let styleString = this.utils.formatStyle(CANVAS_STYLE); // CANVAS_STYLE是canvas的樣式
    this.canvasNode.setAttribute('id','canvas');
    // 一定要設(shè)置這width 和 height
    let ratio = this.imgNode.width / this.imgNode.height, height = this.imgNode.height, width = this.imgNode.width;
    let tempWidth , tempHeight;
    // 按比例伸縮
    if(ratio >= window.innerWidth / window.innerHeight){
      if(width > window.innerWidth){
        tempWidth = window.innerWidth;
        tempHeight = height * window.innerWidth / width;
      } else {
        tempWidth = width;
        tempHeight = height;
      }
    }else{
      if(height > window.innerHeight){
        tempWidth = width * window.innerHeight / width;
        tempHeight = window.innerHeight;
      }else{
        tempWidth = width;
        tempHeight = height;
      }
    }
    this.canvasNode.height = tempHeight;
    this.canvasNode.width = tempWidth;
    styleString = Object.assign({'width': tempWidth, 'height': tempHeight}, CANVAS_STYLE);
    this.canvasNode.setAttribute('style', styleString);

    let ctx = this.canvasNode.getContext('2d'), startX = 0, startY = 0;
    let image = new Image() ;
    image.setAttribute("crossOrigin",'Anonymous')
    // 加時間戳因為這圖片的域名沒設(shè)置跨域/tupian/20230522/upgrade
    image.src = this.imgNode.src + '?t=' + new Date().getTime(); 
    image.height = tempHeight;
    image.width = tempWidth;
    image.onload = function(){
      ctx.drawImage(image, 0, 0, tempWidth, tempHeight);
    }
    // 鼠標(biāo)移動事件
    let mousemoveFn = function(e) {
      ctx.beginPath();
      ctx.lineWidth = 3;
      ctx.strokeStyle = self.currentColor;
      if(startX == e.clientX - self.canvasNode.offsetLeft || startY ===  e.clientY - self.canvasNode.offsetTop  ) return
      ctx.moveTo(startX,startY);
      ctx.lineTo(e.clientX - self.canvasNode.offsetLeft , e.clientY - self.canvasNode.offsetTop );
      ctx.stroke();
      startX = e.clientX - self.canvasNode.offsetLeft;
      startY = e.clientY - self.canvasNode.offsetTop ; // 37是header的高度
    }
    // 鼠標(biāo)按下事件
    this.canvasNode.addEventListener("mousedown",function(e){
      startX = e.clientX - self.canvasNode.offsetLeft;
      startY = e.clientY - self.canvasNode.offsetTop ;

      // 如果在mouseup那里記錄 則在撤回時候要做多一個步驟
      let imageData = ctx.getImageData(0,0, self.canvasNode.width, self.canvasNode.height);
      self.imageDataArray.push(imageData); // 這imageDataArray用來記錄畫筆的筆畫
      self.canvasNode.addEventListener("mousemove", mousemoveFn, false);
    },false);
    this.canvasNode.addEventListener('mouseup', function(e){
      self.canvasNode.removeEventListener('mousemove', mousemoveFn);
    });
    this.bgNode.appendChild(this.canvasNode);

遇到的問題

1.圖片的跨域問題   因為這個域名只設(shè)置了192.168.6.*的跨域,所以我localhost的域名會報跨域的問題(只對192.168.6.*的跨域是同事告訴我的,不然我還在傻乎乎的查問題)

解決辦法:設(shè)置vue.congfig.js文件的dev下的host

2.圖片的按比例伸縮完按保存后圖片的尺寸變了   我用toDataURL()方法輸出的base64后的圖片尺寸變了。原因:在我把圖片draw上canvas上時候,用了上面代碼的圖片那比例伸縮的算法把圖片變小了,所以畫在canvas上的圖片也變小了...

解決辦法:(待解決)

總結(jié)


  • 第一次接觸canvas與圖片相結(jié)合的功能,讓我熟悉了canvas的api

  • 在遇到?jīng)]做過的功能之前,一定要先定下心來運用你所知道的知識思考下有沒可行的方法,找到了突破點就可以做了

  • 在你碰上不熟悉的知識時候,一定要先看api,我這canvas之前不怎么會的,之后我細看了幾遍的api,我就可以上手去做功能了,并且在w3school看到的例子讓我覺得canvas真的很強大

感謝各位的閱讀!關(guān)于“基于html5中canvas做批改作業(yè)小插件的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

網(wǎng)站欄目:基于html5中canvas做批改作業(yè)小插件的示例分析-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://jinyejixie.com/article40/jgcho.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)網(wǎng)站策劃、營銷型網(wǎng)站建設(shè)、云服務(wù)器、小程序開發(fā)移動網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

手機網(wǎng)站建設(shè)
时尚| 大荔县| 大姚县| 温宿县| 洪湖市| 大石桥市| 德保县| 比如县| 米泉市| 海兴县| 泽库县| 什邡市| 临安市| 丽江市| 旌德县| 甘孜| 沙坪坝区| 栖霞市| 静宁县| 柳河县| 老河口市| 双城市| 江北区| 太和县| 稻城县| 玉屏| 余姚市| 东乡县| 涡阳县| 黄石市| 武陟县| 泸溪县| 咸丰县| 祁阳县| 盐边县| 易门县| 若尔盖县| 黄平县| 邓州市| 辉南县| 江孜县|