canvas设置图形图案、文字图案

在这里插入图片描述

查看专栏目录

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

文章目录

    • 线性渐变语法及参数
      • 参数 image
      • 参数repetition
    • 示例效果图
    • 示例源代码(共124行)
    • 参考API
    • canvas基本属性
    • canvas基础方法

如何使用canvas设置图形图案、文字图案呢? canvas createPattern() 方法在指定的方向内重复指定的元素。元素可以是图片、视频,或者其他 元素。被重复的元素可用于绘制/填充矩形、圆形或线条等等。

线性渐变语法及参数

createPattern(image, repetition)

参数 image

HTMLImageElement ()
SVGImageElement ()
HTMLVideoElement (, by using the capture of the video)
HTMLCanvasElement ()
ImageBitmap
OffscreenCanvas
VideoFrame

参数repetition

repeat 默认。该模式在水平和垂直方向重复。
repeat-x 该模式只在水平方向重复。
repeat-y 该模式只在垂直方向重复。
no-repeat 该模式只显示一次(不重复)。

示例效果图

canvas设置图形图案、文字图案_第1张图片

示例源代码(共124行)

/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: [email protected]
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2024-01-14
*/
<template>
	<div class="djs_container">
		<div class="top">
			<h3>canvas设置图形图案、文字图案</h3>
			<div>大剑师兰特, 还是大剑师兰特,gis-dajianshi</div>
			<h4>
				<el-button type="primary" size="mini" @click="draw1()">图案矩形</el-button>
				<el-button type="primary" size="mini" @click="draw2()">图案文字</el-button>
				<el-button type="danger" size="mini" @click="clearCanvas()">清除</el-button>
			</h4>
		</div>
		<div class="dajianshi ">
			<canvas id="dajianshi" ref="mycanvas" width="980" height="490"></canvas>
		</div>

	</div>
</template>
<script>
	export default {
		data() {
			return {
				ctx: null,
				canvas: null,
				imgData:require("@/assets/tx.png")
			}
		},
		mounted() {
			this.setCanvas()
		},
		methods: {
			clearCanvas() {
				this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
			},

			setCanvas() {
				this.canvas = document.getElementById('dajianshi');
				if (!this.canvas.getContext) return;
				this.ctx = this.canvas.getContext("2d");
			},
			draw1() {
				this.clearCanvas()
                const img = new Image();
                img.src = this.imgData;
                img.onload = () => {
                  const pattern = this.ctx.createPattern(img, "repeat");
                  this.ctx.fillStyle = pattern;
                  this.ctx.fillRect(0,0, this.canvas.width,this.canvas.height); 
                };
				
			},
			draw2() {
				this.clearCanvas()
				const img = new Image();
				img.src = this.imgData;
				img.onload = () => {
				  const pattern = this.ctx.createPattern(img, "repeat");
				  this.ctx.fillStyle = pattern;
				  this.ctx.font = '120px STheiti, SimHei';
				  this.ctx.fillText('还是大剑师兰特', 64, 266);	
				};
			},
		}
	}
</script>

<style scoped>
	.djs_container {
		width: 1000px;
		height: 680px;
		margin: 50px auto;
		border: 1px solid #994170;
		position: relative;
	}

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

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

参考API

https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/createPattern

canvas基本属性

属性 属性 属性
canvas fillStyle filter
font globalAlpha globalCompositeOperation
height lineCap lineDashOffset
lineJoin lineWidth miterLimit
shadowBlur shadowColor shadowOffsetX
shadowOffsetY strokeStyle textAlign
textBaseline width

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()

你可能感兴趣的:(#,canvas示例教程100+,canvas图案,canvas图案文字)