当前位置: 首页 > article >正文

canvas基础:绘制线段,绘制多边形

canvas实例应用100+ 专栏提供canvas的基础知识,高级动画,相关应用扩展等信息。
canvas作为html的一部分,是图像图标地图可视化的一个重要的基础,学好了canvas,在其他的一些应用上将会起到非常重要的帮助。

文章目录

    • 使用路径绘制图形需要一些额外的步骤:
    • 用到的方法:
    • 示例效果图
    • 示例源代码(共97行)
    • canvas基本属性
    • canvas基础方法

如何通过canvas通绘制线段,绘制多边形呢? 图形的基本元素是路径。路径是通过不同颜色和宽度的线段或曲线相连形成的不同形状的点的集合。一个路径,甚至一个子路径,都是闭合的。

使用路径绘制图形需要一些额外的步骤:

创建路径起始点
调用绘制方法去绘制出路径
把路径封闭
一旦路径生成,通过描边或填充路径区域来渲染图形。

用到的方法:

beginPath()
新建一条路径,路径一旦创建成功,图形绘制命令被指向到路径上生成路径
moveTo(x, y)
把画笔移动到指定的坐标(x, y)。相当于设置路径的起始点坐标。
lineTo(x, y)
画线到指定的坐标(x, y)。相当于一段的终点。
closePath()
闭合路径之后,图形绘制命令又重新指向到上下文中
stroke()
通过线条来绘制图形轮廓
fill()
通过填充路径的内容区域生成实心的图形

示例效果图

在这里插入图片描述

示例源代码(共97行)


/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: 2909222303@qq.com
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2023-11-27
*/
<template>
	<div class="container">
		<div class="top">
			<h3>canvas绘制线段,绘制多边形</h3>
			<div>大剑师兰特, 还是大剑师兰特,gis-dajianshi</div>
			<h4>
				<el-button type="primary" size="mini" @click="drawLine()">绘制直线</el-button>
				<el-button type="primary" size="mini" @click="drawPolygon1()">绘制多边形(直连)</el-button>
				<el-button type="primary" size="mini" @click="drawPolygon2()">绘制多边形(关闭路径)</el-button>
			</h4>
		</div>
		<div class="dajianshi ">
			<canvas id="dajianshi" width="800" height="400"></canvas>
		</div>

	</div>
</template>
<script>
	export default {
		data() {
			return {
				ctx: null,
			}
		},
		mounted() {
			this.setCanvas()
		},
		methods: {
			setCanvas() {
				var canvas = document.getElementById('dajianshi');
				if (!canvas.getContext) return;
				this.ctx = canvas.getContext("2d");
			},
			drawLine() {
                    this.ctx.beginPath();
                    this.ctx.moveTo(50, 50);
                    this.ctx.lineTo(600, 50);
                    this.ctx.lineTo(600, 200);
					this.ctx.stroke(); //绘制路径。
					this.ctx.closePath();
			},
			drawPolygon1() {
				this.ctx.beginPath();
				this.ctx.moveTo(50, 50);
				this.ctx.lineTo(100, 300);
				this.ctx.lineTo(50, 300);
				this.ctx.lineTo(50, 50);
                this.ctx.fillStyle= 'rgba(250,0,0,0.4)';
				this.ctx.fill(); //绘制路径。
			},
			drawPolygon2() {
                    this.ctx.beginPath();
                    this.ctx.moveTo(100, 100);
                    this.ctx.lineTo(700, 50);
                    this.ctx.lineTo(700, 200);
					this.ctx.closePath();
					this.ctx.strokeStyle= 'rgba(250,0,0,0.8)';
					this.ctx.stroke(); 
					
			},

		}
	}
</script>

<style scoped>
	.container {
		width: 1000px;
		height: 600px;
		margin: 50px auto;
		border: 1px solid green;
		position: relative;
	}

	.top {
		margin: 0 auto 0px;
		padding: 10px 0;
		background: indianred;
		color: #fff;
	}

	.dajianshi {
		margin: 10px auto 0;
		border: 1px solid #ccc;
		width: 800px;
		height: 400px;
		background-color: #f9f9f9;
	}
</style>




canvas基本属性

属性属性属性
canvasfillStylefilter
fontglobalAlphaglobalCompositeOperation
heightlineCaplineDashOffset
lineJoinlineWidthmiterLimit
shadowBlurshadowColorshadowOffsetX
shadowOffsetYstrokeStyletextAlign
textBaselinewidth

canvas基础方法

方法方法方法
arc()arcTo()addColorStop()
beginPath()bezierCurveTo()clearRect()
clip()close()closePath()
createImageData()createLinearGradient()createPattern()
createRadialGradient()drawFocusIfNeeded()drawImage()
ellipse()fill()fillRect()
fillText()getImageData()getLineDash()
isPointInPath()isPointInStroke()lineTo()
measureText()moveTo()putImageData()
quadraticCurveTo()rect()restore()
rotate()save()scale()
setLineDash()setTransform()stroke()
strokeRect()strokeText()transform()
translate()

http://www.kler.cn/a/146432.html

相关文章:

  • Digital Document System (DDS)
  • 接口测试自动化实战(超详细的)
  • 强化学习-蒙特卡洛方法
  • HarmonyOS Next 实现登录注册页面(ARKTS) 并使用Springboot作为后端提供接口
  • C++算法第十六天
  • 南京地铁路线和站点2021-2030含规划线路shp数据arcmap地铁图坐标wgs84无偏移内容分析测评
  • 利用广度优先或模拟解决米诺骨牌
  • 史上最细,2个半月从功能进阶自动化测试,进阶指南...
  • 【每日一题】子数组的最小值之和
  • 分享:身份证阅读器在ARM Linux系统调用libwlt2bmp.so解码库实现身份证头像解码
  • python爬虫实习找工作练习测试(以下内容仅供参考学习)
  • 【Linux】make/Makefile 进度条小程序
  • C#,《小白学程序》第二十二课:大数的乘法(BigInteger Multiply)
  • CAM-Classification activation map 类激活图玩耍指南
  • mysql文本类型的最大长度限制
  • 使用VC++设计程序对一幅256级灰度图像进行全局固定阈值分割、自适应阈值分割
  • 单片机毕设实物买的成品,论文是自己查资料和照着实物写的
  • GPS北斗对时服务(时间同步系统)电力变电站应用方案
  • PostgreSQL数据库初接触
  • 使用 OpenCV 发现圆角矩形的轮廓
  • springboot核心原理之@SpringbootApplication
  • CRC校验
  • QT(19):QChar和QByteArray
  • python循环语句和函数
  • 【虹科干货】ntopng如何将漏洞扫描与流量监控相结合,以提高网络安全性
  • OpenCV简介及安装