uniapp使用canvas在图片绘制网格以及根据坐标绘制圆点vue3

<canvas :style="{ width: canvasWidth + 'px', height: canvasHeight + 'px' }" canvas-id="imgGird" id="imgGird"></canvas>
// 初始化宽高
const canvasWidth = ref(400)
const canvasHeight = ref(600)
// 画点
function drawDot(ctx, x, y) {
    ctx.beginPath();
    ctx.arc(x, y, 10, 0, 2 * Math.PI); //x,y,直径
    ctx.fillStyle = '#2a71b9'; //颜色
    ctx.fill();
}
// 画图画线
function drawGrid(path, width, height, positionArr) {
    const ctx = uni.createCanvasContext('imgGird', this);
    ctx.drawImage(path, 0, 0, width, height);
    // 设置网格线颜色和宽度
    ctx.setStrokeStyle('rgba(63,127,192,0.5)');
    ctx.setLineWidth(1);

    // 绘制水平网格线
    for (let i = 0; i <= height; i += 20) {
        ctx.moveTo(0, i);
        ctx.lineTo(width, i);
    }

    // 绘制垂直网格线
    for (let i = 0; i <= width; i += 20) {
        ctx.moveTo(i, 0);
        ctx.lineTo(i, height);
    }

    // 执行绘制
    ctx.stroke();
    // 根据坐标画圆点
    positionArr.forEach(item => {
        drawDot(ctx, item.x, item.y)
    })
    // 将canvas转换为图片
    ctx.draw(true, () => {
        uni.canvasToTempFilePath({
            canvasId: 'imgGird',
            success: (res) => {
                console.log(res.tempFilePath);
                // 可以将生成的临时文件路径进行保存或者其他操作
            },
            fail: (err) => {
                console.error(err);
            }
        });
    });
}
// 上传图片
const updateImg = (ev) => {
    chooseAvatarUrl.value = ''
    console.log('裁切完成', ev)
    let positionArr = [
        {
            x: 50,
            y: 60
        },
        {
            x: 80,
            y: 90
        },
        {
            x: 110,
            y: 120
        },
        {
            x: 160,
            y: 250
        },
        {
            x: 400,
            y: 590
        },
        {
            x: 300,
            y: 220
        }
    ]
    uni.getImageInfo({
        src: ev.path,
        success: function (image) {
            console.log('图片信息', image, image.path)
            canvasWidth.value = image.width
            canvasHeight.value = image.height
            drawGrid(ev.path, image.width, image.height, positionArr)
        }
    });
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值