js canvas之雷达图与图片导出

应要求,需要画一个雷达图展示星座运势,并需要将html转为图片完成分享。
因为是app内嵌h5,引入额外的插件对于加载速度并不友好,所以决定自己用原生js完成,echarts与html2canvas不在考虑范围内。

雷达图

这是做前端以来第一次做比较复杂的绘图,过程踩了不少坑,写个短文,做以记录。

在开始绘图之前,必须要进行构思,这是必不可少的一步。
直接看下面这张图就一目了然:


WechatIMG13.jpeg

(又把初中数学学了一遍)
从图上得知,本质上是做圆的内切五边形,利用公式计算坐标。

代码在此,以vue为例:
标签与样式

<template>
    <div ref="radarContainer" class="radar-container">
        <img :src="source" class="radar-canvas" />
    </div>
</template>

<style scoped>
.radar-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.radar-canvas {
    height: 256px;
    width: 256px;
}
</style>

data

    data() {
        return {
            data: [
                { label: '爱情', type: 1, percent: 45 },
                { label: '工作', type: 2, percent: 20.8},
                { label: '综合', type: 3, percent: 30.3 },
                { label: '健康', type: 4, percent: 100 },
                { label: '工作', type: 5, percent: 56 }
            ],
            ctx: null,
            source: '',
            circlePoint: {} // 记录圆上的点
        }
    },

mounted

    mounted() {
        this.$nextTick(() => {
            const step = this.data.length // 五个点,设置绘制次数
            const w = 256 // 取决于在设计稿中的真实宽度
            const ratio = 3
            const canvas = document.createElement('CANVAS')
            this.ctx = canvas.getContext('2d') // 实例化2dcanvas

            canvas.width = w * ratio // 必须给画布设置width height,否则坐标系比例不正确
            canvas.height = w * ratio

            canvas.style.width = w + 'px'
            canvas.style.height = w + 'px'
// 值得注意的是canvas.style.width 与 canvas.width的关系相当于显示器宽度与显示器分辨率的关系
            this.ctx.scale(ratio, ratio) 
// ratio与scale的使用是为了canvas能渲染更清晰的图像,此处设置了三倍渲染大小
// 相当于屏幕大小不变,分辨率却扩大三倍
            const radius = 128 - 12 //  圆的半径 = w / 2,-12是为了画一个不会占满画布的小圆
            this.drawRadar({ step, radius, canvas })
        })
    },

开始绘制

        drawRadar(option) {
            this.radarBG(option)
            this.radarBone(option)
            this.radarPoint()
            this.radarLine()
            this.source = option.canvas.toDataURL('image/png', 0.3) // 将canvas的内容转化为图像
        },

绘制背景

        radarBG({ step, radius }) {
            // 不使圆紧贴在画布边缘,使圆心偏移12像素,以offset值绘制大圆
            const offset = radius + 12
            // 遍历6次而不是5次,是为了留最外一层做label的绘制
            for (let s = 6; s > 0; s--) {
                this.ctx.beginPath() // 表示开始绘制
                this.ctx.lineWidth = 1 // 线条粗细
                this.ctx.setLineDash([1, 2]) // 虚线
                for (let i = 0; i < step; i++) {
                    const rad = ((2 * Math.PI) / step) * i // 弧度
                    const x = offset + Math.sin(rad) * radius * (s / 6)
                    const y = offset - Math.cos(rad) * radius * (s / 6)
                    if (s === 6) {
                        this.radarLabel(i, x, y) // 绘制标签
                    } else {
                        if (s === 5) {
                            // === 5 时为雷达图最外层的时候,只需在此时记录一次内部的点
                            // 此处计算处于伞骨上的点坐标
                            const { type, percent } = this.data[i]
                            const percentX =
                                offset +
                                Math.sin(rad) *
                                    (radius * (percent / 100)) *
                                    (s / 6)
                            const percentY =
                                offset -
                                Math.cos(rad) *
                                    (radius * (percent / 100)) *
                                    (s / 6)
                            this.circlePoint[type] = {
                                x: percentX,
                                y: percentY
                            }
                        }
                        this.ctx.lineTo(x, y) // 绘制线条
                    }
                }
                this.ctx.closePath() // 闭合线条
                this.ctx.strokeStyle = `black` // 线条样式-颜色设置
                this.ctx.stroke() // 线条样式-绘制
            }
        },

绘制标签

        radarLabel(i, x, y) {
            const text = this.data[i].label
            this.ctx.font = `normal normal 300 14px PingFangSC-Regular`
            this.ctx.fillStyle = 'black'
            this.ctx.textAlign = 'center'
            this.ctx.textBaseline = 'top'
            this.ctx.fillText(text, x, y)
        },

绘制伞骨

        radarBone({ step, radius }) {
            const offset = radius + 12
            for (let s = 6; s > 4; s--) {
                if (s === 5) {
                    this.ctx.beginPath() // 表示开始绘制
                    this.ctx.lineWidth = 1 // 线条粗细
                    this.ctx.setLineDash([1, 2]) // 虚线
                    for (let i = 0; i < step; i++) {
                        const rad = ((2 * Math.PI) / step) * i // 弧度
                        const x = offset + Math.sin(rad) * radius * (s / 6)
                        const y = offset - Math.cos(rad) * radius * (s / 6)
                        this.ctx.moveTo(offset, offset)
                        this.ctx.lineTo(x, y)
                    }
                }
                this.ctx.strokeStyle = `black` // 线条样式-颜色设置
                this.ctx.stroke() // 线条样式-绘制
            }
        },

绘制点

        radarPoint() {
            for (const item of this.data) {
                const { type } = item
                const { x, y } = this.circlePoint[type]
                this.ctx.beginPath() // 表示开始绘制
                this.ctx.arc(x, y, 1.2, 0, 2 * Math.PI)
                this.ctx.fillStyle = 'red'
                this.ctx.fill()
                this.ctx.closePath()
            }
        },

绘制折线

        radarLine() {
            this.ctx.beginPath() // 表示开始绘制
            for (const item of this.data) {
                const { type } = item
                const { x, y } = this.circlePoint[type]
                this.ctx.lineTo(x, y) // 绘制线条
            }
            this.ctx.closePath() // 闭合
            this.ctx.fillStyle = 'rgba(164,153,234,.6)'
            this.ctx.fill()
        }

雷达图绘制完成
效果:


WechatIMG14.jpeg

绘图过程参考了此文:https://blog.csdn.net/github_39673115/article/details/78369409

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容