使用Canvas实现一个电子签名功能

使用vue3+TS+canvas实现一个电子签名功能,同时支持移动端Androidios

代码附上:
<template>
	<div class="esign-wrapper">
		<h1>电子签名</h1>
		<canvas ref="canvasRef" :width="width" :height="height" style="border:1px solid #ccc;"></canvas>
		<div  v-show="showBtn" className="sign-btnWrap">
			<span  @click="cancel" className="sign-btn">清除</span>
			<span  @click="save" className="sign-btn primary">下载</span>
		</div>
		<div class="block">
			<span class="demonstration">线条颜色</span>
			<el-color-picker v-model="color" ></el-color-picker>
		</div>
		<div class="block">
		<span class="demonstration">线条粗细</span>
		<el-slider style='width: 200px' max="10"  v-model="lineWidthDate"></el-slider>
	</div>
	</div>
</template>

<script lang="ts" setup name="ElectronicSignature">
import { ref, watch, onMounted,onUnmounted } from "vue";
interface IProps {
	/**
	 * @description   画布宽度
	 * @default       400
	 */
	width?: number;
	/**
	 * @description   画布高度
	 * @default       200
	 */
	height?: number;
	/**
	 * @description   线宽
	 * @default       4
	 */
	lineWidth?: number;
	/**
	 * @description   线段颜色
	 * @default       'red'
	 */
	strokeColor?: string;
	/**
	 * @description   设置线条两端圆角
	 * @default       'round'
	 */
	lineCap?: string;
	/**
	 * @description   线条交汇处圆角
	 * @default       'round'
	 */
	lineJoin?: string;
	/**
	 * @description   画布背景颜色
	 * @default       'transparent'
	 */
	bgColor?: string;
	/**
	 * @description   true
	 */
	showBtn?: boolean;
	/**
	 * @description   当保存时的回调, blob为生成的图片bob
	 * @default       -
	 */
	onSave?: (blob: Blob) => void;
	/**
	 * @description   当画布清空时的回调, 参数为画布的上下文对象,可以直接使用canvas的api
	 * @default       -
	 */
	onClear?: (canvasContext: CanvasRenderingContext2D) => void;
	/**
	 * @description   当画布结束时的回调
	 * @default       -
	 */
	onDrawEnd?: (canvas: HTMLCanvasElement) => void;
}

const props = withDefaults(defineProps<IProps>(), {
	width: 400,
	height: 200,
	lineWidth:4,
	strokeColor:'green',
	lineCap:'round',
	lineJoin:'round',
	bgColor:'transparent',
	showBtn:true
});

const {
	width,
	height,
	lineWidth,
	strokeColor,
	lineCap,
	lineJoin,
	bgColor,
	showBtn,
	onSave,
	onClear,
	onDrawEnd
} = props;

const canvasRef = ref<any>(null);
const ctxRef = ref<any>(null);
//线条颜色
const   color = ref('#409EFF')
//线条粗细
const lineWidthDate = ref<number>(4)
// 保存上次绘制的 坐标及偏移量
const client = ref<any>({
	offsetX: 0, // 偏移量
	offsetY: 0,
	endX: 0, // 坐标
	endY: 0
})


// 判断是否为移动端
const mobileStatus = (/Mobile|Android|iPhone/i.test(navigator.userAgent));

// 取消-清空画布
const cancel = () => {
	// 清空当前画布上的所有绘制内容
	if(canvasRef.value) {
		const canvasCtx = canvasRef.value.getContext("2d");
		canvasCtx.clearRect(0, 0, width, height);

		onClear && onClear(canvasRef.value)
	}
}

// 保存-将画布内容保存为图片
const save = () => {
	// 将canvas上的内容转成blob流
	canvasRef.value.toBlob((blob: any) => {
		// 获取当前时间并转成字符串,用来当做文件名
		const date = Date.now().toString()
		// 创建一个 a 标签
		const a = document.createElement('a')
		// 设置 a 标签的下载文件名
		a.download = `${date}.png`
		// 设置 a 标签的跳转路径为 文件流地址
		a.href = URL.createObjectURL(blob)
		// 手动触发 a 标签的点击事件
		a.click()
		// 移除 a 标签
		a.remove()

		onSave && onSave(blob);
	})
}

// 绘制
const draw = (event: { changedTouches?: any; pageX?: any; pageY?: any; }) => {
	// 获取当前坐标点位
	const { pageX, pageY } = mobileStatus ? event.changedTouches[0] : event
	// 获取canvas 实例
	const canvas:HTMLCanvasElement = canvasRef.value as any;

	const { x, y } = canvas.getBoundingClientRect();
	// 修改最后一次绘制的坐标点
	client.value.endX = pageX
	client.value.endY = pageY
	// 根据坐标点位移动添加线条
	ctxRef.value.lineTo(pageX - x, pageY - y)

	// 绘制
	ctxRef.value .stroke()
};

// 初始化
const init = (event: { changedTouches?: any; offsetX?: any; offsetY?: any; pageX?: any; pageY?: any; }) => {
	// 获取偏移量及坐标
	const { offsetX, offsetY, pageX, pageY } = mobileStatus ? event.changedTouches[0] : event;
	const canvas:HTMLCanvasElement = canvasRef.value as any;

	const { x, y } = canvas.getBoundingClientRect();
	client.value.offsetX = offsetX
	client.value.offsetY = offsetY
	client.value.endX = pageX
	client.value.endY = pageY

	// 清除以上一次 beginPath 之后的所有路径,进行绘制
	ctxRef.value.beginPath()
	// 根据配置文件设置相应配置
	ctxRef.value.lineWidth = lineWidthDate.value //线条粗细                   //lineWidth
	ctxRef.value.strokeStyle = color.value
	ctxRef.value.lineCap = lineCap
	ctxRef.value.lineJoin = lineJoin
	// 设置画线起始点位
	ctxRef.value.moveTo(client.value.endX - x, client.value.endY - y)
	// 监听 鼠标移动或手势移动
	window.addEventListener(mobileStatus ? "touchmove" : "mousemove", draw)
};
// 结束绘制
const closeDraw = () => {
	// console.log(ctxRef.value);
	// 结束绘制
	ctxRef.value.closePath()
	// 移除鼠标移动或手势移动监听器
	window.removeEventListener("mousemove", draw)
	onDrawEnd && onDrawEnd(canvasRef.current)
};
const initCanvas =()=>{
	// 获取canvas 实例
	const canvas:HTMLCanvasElement = canvasRef.value as any;
	// 设置宽高
	canvas.width = width;
	canvas.height = height;
	// 创建上下文
	const ctx:any = canvas.getContext('2d');
	ctxRef.value = ctx;
	// 设置填充背景色
	ctxRef.value.fillStyle = bgColor;
	// 绘制填充矩形
	ctxRef.value.fillRect(
		0, // x 轴起始绘制位置
		0, // y 轴起始绘制位置
		width, // 宽度
		height // 高度
	);
}
const  addEventListener=()=>{
	// 创建鼠标/手势按下监听器
	window.addEventListener(mobileStatus ? "touchstart" : "mousedown", init);
	// 创建鼠标/手势 弹起/离开 监听器
	window.addEventListener(mobileStatus ? "touchend" : "mouseup", closeDraw);

}
const  removeEventListener=()=>{
	// 创建鼠标/手势按下监听器
	window.removeEventListener(mobileStatus ? "touchstart" : "mousedown", init);
	// 创建鼠标/手势 弹起/离开 监听器
	window.removeEventListener(mobileStatus ? "touchend" : "mouseup", closeDraw);

}


const initEsign=()=>{
	initCanvas();
	addEventListener();

}

onMounted(() => {
	initEsign();
});

onUnmounted(()=>{
	removeEventListener();
});


</script>

<style scoped lang="less">
.esign-wrapper {

	.sign-btnWrap {
		margin-top: 10px;
		.sign-btn {
			display: inline-block;
			border-radius: 6px;
			padding: 4px 12px;
			font-size: 14px;
			background-color: #ccc;
			margin-right: 12px;
			margin-bottom: 10px;
			margin-left:10px;
			&.primary {
				color: #fff;
				background-color: #1677ff;
			}
		}
	}
	.block {
		margin: 30px 20px;
	}
}
</style>

 部分Api使用

## 属性
参数 | 说明 | 类型 | 可选值 | 默认值 | 是否必填
:-: | :-: | :-: | :-: | :-: | :-:
`width` | canvas 宽度 | number | - | `default` | 320 
`height` | canvas 高度 | number | - | `default` | 160
`lineWidth` | 线宽 | number | - | `default` | 4
`strokeColor` | 线段颜色 | string | - | `default` | green
`lineCap` | 设置线条两端圆角 | string | - | `default` | round
`lineJoin` | 线条交汇处圆角 | string | - | `default` | round
`bgColor` | 画布背景颜色 | string | - | `default` | transparent
`showBtn` | true | boolean | - | `default` | true



## 事件
事件名 | 说明 | 参数列表 | 参数说明
:-: | :-: | :-: | :-:
`onSave` | 当保存时的回调, blob为生成的图片bob | (blob: Blob) => void | -
`onClear` | 当画布清空时的回调, 参数为画布的上下文对象,可以直接使用canvas的api | (canvasContext: CanvasRenderingContext2D) => void | -
`onDrawEnd` | 当画布结束时的回调 | (canvas: HTMLCanvasElement) => void | -


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值