当前位置:网站首页>canvas画图时的bug记录
canvas画图时的bug记录
2022-08-04 09:33:00 【尼克_张】
1.重复使用图片的onload事件中处理某些事,出现图片闪烁
在调用画图片的构造函数时,我们可以先在constructor中缓存图片
constructor(){
this.img = new Image();
this.img.src = require("xx");
}
然后再在方法中画图片
this.ctx.drawImage(this.img,width,height)
2.当画布上出现重叠的图像
this.canvasDom = document.getElementById("canvas");
this.ctx = this.canvasDom.getContext("2d");
const {
width, height } = this.canvasDom;
this.width = width;
this.height = height;
先把原先的画布信息存下来
this.imageData = this.ctx.getImageData(
0,
0,
this.width,
this.height
);
清空画布,把存储的画布信息放上去,再加上自己新的内容
ctx.clearRect(0, 0, this.width, this.height);
this.imageData &&
ctx.putImageData(
this.imageData,
0,
0,
0,
0,
this.width,
this.height
);
边栏推荐
猜你喜欢
思想茶叶蛋 (Jul 31,2022)| 元宇宙(Metaverse)下了一枚什么样的蛋
命里有时终须有--记与TiDB的一次次擦肩而过
MindSpore:Batchnorm only support nchw input!
路由/三层交换机DHCP下发地址详解【华为eNSP】
加降息与BTC流动性事件策略研究
Detailed explanation of telnet remote login aaa mode [Huawei eNSP]
Win11系统重装用什么好 一键重装Win11教程
[Punctuality Atom STM32 Serial] Chapter 4 STM32 First Experience Excerpted from [Punctual Atom] MiniPro STM32H750 Development Guide_V1.1
Could you please talk about how the website is accessed?[Interview questions in the web field]
MindSpore:mirrorpad算子速度过慢的问题
随机推荐
MATLAB/Simulink快捷键
[Cloud Residency Co-Creation] HCSD Celebrity Live Streaming – Employment Guide
蘑菇书EasyRL学习笔记
关于DSP驱动外挂flash
Four common methods of network attacks and their protection
Win11不识别蓝牙适配器的解决方法
【云驻共创】HCSD 大咖直播–就业指南
[Punctuality Atom STM32 Serial] Chapter 4 STM32 First Experience Excerpted from [Punctual Atom] MiniPro STM32H750 Development Guide_V1.1
How to restore the Youxuan database with only data files
Inheritance and the static keyword
已解决No module named ‘flask_misaka‘【BUG解决】
LeetCode中等题之旋转图像
学习在php中将特大数字转成带有千/万/亿为单位的字符串
请问下Flink SQL如何写hologres分区表?我想要每天一个分区
双重for循环案例以及while循环和do while循环案例
张朝阳对话俞敏洪:谈宇宙、谈焦虑、谈创业、谈退休、谈人生
Detailed Explanation of Addresses Delivered by DHCP on Routing/Layer 3 Switches [Huawei eNSP]
《福格行为模型》:如何养成好习惯?
被Win11安全中心误删除的文件怎么恢复?
并发编程之生产者和消费者问题