绘图工具

Posted lidaoshao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绘图工具相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
#myCanvas {
border: 1px solid;
}
.color{
width: 20px;
height: 20px;
display: inline-block;
}
</style>
</head>

<body>
<canvas id="myCanvas" width="500" height="400">
很抱歉,你的浏览器不支持canvas元素
</canvas>
<div>
<button onclick="clearCanvas()" style="float: left;">清除画布</button>
<div class="color" style="" onclick="changeColor(‘red‘)"></div>
<div class="color" style="" onclick="changeColor(‘blue‘)"></div>
<div class="color" style="" onclick="changeColor(‘black‘)"></div>
<div class="color" style="" onclick="changeColor(‘green‘)"></div>
<div class="color" style="" onclick="changeColor(‘yellow‘)"></div>
<div class="color" style="" onclick="changeColor(‘white‘)"></div>
<input type="range" name="" id="range" style="margin-left: 10px;" min="1" max="10" onchange="changeWidth(this.value)"/>
</div>
<script>
var c = document.getElementById(‘myCanvas‘);//获取Canvas对象
let boxSelector = document.getElementsByClassName(‘color‘);
var ctx = c.getContext(‘2d‘);//获取上下文
ctx.lineWidth = 5;//默认的画笔粗细值设置为5
c.onmousedown = function (e) {
var ev = e || window.event;//获取事件对象,主要为了后面获取鼠标点击下的坐标
//移动点至鼠标点击下去的坐标,坐标的获取如下
ctx.beginPath();//开启绘画路径
ctx.moveTo(ev.clientX - c.offsetLeft, ev.clientY - c.offsetTop);////由于canvas元素默认带有margin, 所以需要减去到浏览器边框的距离
document.onmousemove = function () {
var ev = ev || window.event;//获取事件对象, 主要是为了后面获取鼠标移动时的坐标
//移动点至鼠标移动的坐标,坐标的获取如下
ctx.lineTo(ev.clientX - c.offsetLeft, ev.clientY - c.offsetTop);//同样需要减去canvas元素到浏览器边框的距离
ctx.stroke();//将点绘制成线条
};
};
ctx.closePath();//结束绘画路
///当鼠标抬起来时需要停止绘制效果
c.onmouseup = function () {
document.onmousedown = null;//当鼠标抬起来时需要停止绘制效果
document.onmousemove = null;//清空移 动鼠标时的效果
};
function clearCanvas() {
ctx.clearRect(0, 0, c.width, c.height);//清空画布
}
let changeColor = function (str) {
ctx.strokeStyle = str;
for (let i = 0; i < boxSelector.length; i++) {
boxSelector[i].style.boxShadow = ‘‘;
}
event.target.style.boxShadow = ‘0 0 8px black‘;
}
function changeWidth(i) {//接收range控件 传递过来的值,值的范围为1-10
ctx.lineWidth = i;//用这个值来作为画笔的粗细值
}
</script>
</body>
</html>

以上是关于绘图工具的主要内容,如果未能解决你的问题,请参考以下文章

可以嵌入网站中用作在线绘图工具的绘图/素描小部件

R:向交互式绘图添加“工具提示”(绘图)

如何更改谷歌地图绘图管理器工具栏工具提示?

matlab绘图工具

Drawio免费绘图工具

Drawio免费绘图工具