文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

uniapp使用canvas+手势缩放

2023-09-18 09:43

关注

功能介绍,工程类app,需要在手机端查看图纸,canvas绘制点,线。整理随意放大缩小。

  1. canvas绘制方法

//画布image            drawImage(ctx, path, x, y, dWidth, dHeight) {                ctx.drawImage(path, x, y, dWidth, dHeight)            },            //圆角矩形            roundNode(ctx, x, y, width, height, radius, color) {                //圆角矩形部分                ctx.beginPath()                if (width < 2 * radius) radius = width / 2;                if (height < 2 * radius) radius = height / 2;                ctx.moveTo(x + radius, y);                ctx.arcTo(x + width, y, x + width, y + height, radius);                ctx.arcTo(x + width, y + height, x, y + height, radius);                ctx.arcTo(x, y + height, x, y, radius);                ctx.arcTo(x, y, x + width, y, radius);                ctx.setFillStyle(color)                ctx.fill()            },            //绘制三角形  type:箭头朝向:bottom、right、left            drawTriangle(ctx, x, y, color, type) {                ctx.beginPath()                let height = 10 //计算等边三角形的高                ctx.moveTo(x, y); //x y开始                 switch (type) {                    case 'bottom':                        ctx.lineTo(x - height / 2, y)                        ctx.lineTo(x, y + height)                        ctx.moveTo(x, y)                        ctx.lineTo(x + height / 2, y)                        ctx.lineTo(x, y + height)                        break;                    case 'left':                        ctx.lineTo(x, y - height / 2)                        ctx.lineTo(x - height, y)                        ctx.moveTo(x, y)                        ctx.lineTo(x, y + height / 2)                        ctx.lineTo(x - height, y)                        break;                    case 'right':                        ctx.lineTo(x, y - height / 2)                        ctx.lineTo(x + height, y)                        ctx.moveTo(x, y)                        ctx.lineTo(x, y + height / 2)                        ctx.lineTo(x + height, y)                        break;                    default:                        break;                }                  ctx.setFillStyle(color)                ctx.fill();            },            drawText(ctx, text, x, y, color, size) {                //文字部分                ctx.beginPath()                ctx.setTextAlign('center')                ctx.setFillStyle(color)                ctx.setFontSize(size)                const metrics = ctx.measureText(text)                //文字统一偏移                ctx.fillText(text, x + metrics.width / 2, y + 17)            },            // 绘制带箭头线 type:箭头朝向:bottom、right、left            drawLine(ctx, fromX, fromY, toX, toY, color, type, isArrow = true, isDash = false) {                ctx.beginPath()                if (isDash) {                    ctx.setLineDash([10]);                } else {                    ctx.setLineDash([]);                }                ctx.moveTo(fromX, fromY)                ctx.lineTo(toX, toY)                ctx.setLineWidth(1)                ctx.setStrokeStyle(color)                ctx.stroke()    //是否绘制箭头                if (isArrow) {                    this.drawTriangle(ctx, toX, toY, color, type)                }            },
  1. 手势缩放 拖拽功能实现

                                        

movable-view + movable-area 实现该功能

windowWidth、windowHeight 是计算屏幕占比 如果需要多设备可以参考

widths、heights 动态movable-view宽高 (我这里图纸太大需要一定缩放,并且movable-view内容最好跟movable-view宽高相同)

//开始绘制that.context = uni.createCanvasContext('myCanvas')//画背景            that.drawImage(that.context,that.infos.pic, 0, 0,that.widths, that.heights)            //画节点            //开始节点           this.roundNode(this.context, 553, 38, 100, 36, 26, '#1EC1C3')            this.node.push({                x:553,                y:38,                w:100,                h:36,                targe:0            })                        that.context.draw()
//s缩放比例scaleChange(e) {    this.scale = e.detail.scale}
//点击事件 判断缩放比例             touchstart(e) {                let x = e.touches[0].x                let y = e.touches[0].y                this.node.forEach(item => {                    if (x > item.x * this.scale && x < (item.x + item.w) * this.scale                        && y > item.y * this.scale && y < (item.y + item.h) * this.scale) {                        //在范围内,根据标记定义节点类型                        this.lookDetial(item)                    }                })             },

目前就可以 最后需要注意 uniapp 对画布图片的大小,宽高,有很大的限制,如果页面没有显示,或者报错 80%就是这个原因

plus.io.resolveLocalFileSystemURL 安卓可以使用这个来压缩

来源地址:https://blog.csdn.net/qq_49073580/article/details/128934449

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯