文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

基于html5中canvas做批改作业小插件的示例分析

2023-06-09 10:55

关注

这篇文章给大家分享的是有关基于html5中canvas做批改作业小插件的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

需求分析

  1. 能进行批改,就是相当于画笔

  2. 能进行画笔的撤回功能

  3. 能进行全部画笔的清除功能

  4. 可以转化画笔的颜色

技术上的实现思路

在听到这需求后的第一反应就是用canvas来做,所以我在w3school阅读了 canvas的API .

将图片转到canvas,用到API: drawImage()

2画笔的实现

清除功能:讲原始的图片再次用drawImage()函数来重置
4.撤回功能:在每次按下鼠标那时候,用getImageData()函数获取当前的图像记录到数组里面,然后按撤回则使用putImageData()函数放在canvas
5.画笔的颜色:在mousemove里面改变strokeStyle笔的颜色

代码实现

移动鼠标画出线条的代码

let self = this;    this.canvasNode = document.createElement('canvas');    let styleString = this.utils.formatStyle(CANVAS_STYLE); // CANVAS_STYLE是canvas的样式    this.canvasNode.setAttribute('id','canvas');    // 一定要设置这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')    // 加时间戳因为这图片的域名没设置跨域https://www.jianshu.com/p/c3aa975923de    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);    }    // 鼠标移动事件    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的高度    }    // 鼠标按下事件    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);

遇到的问题

图片的跨域问题   因为这个域名只设置了192.168.6.*的跨域,所以我localhost的域名会报跨域的问题(只对192.168.6.*的跨域是同事告诉我的,不然我还在傻乎乎的查问题)

解决办法:设置vue.congfig.js文件的dev下的host

图片的按比例伸缩完按保存后图片的尺寸变了   我用toDataURL()方法输出的base64后的图片尺寸变了。原因:在我把图片draw上canvas上时候,用了上面代码的图片那比例伸缩的算法把图片变小了,所以画在canvas上的图片也变小了...

解决办法:(待解决)

总结

感谢各位的阅读!关于“基于html5中canvas做批改作业小插件的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯