码迷,mamicode.com
首页 > 微信 > 详细

微信小程序 canvas 文字自动换行

时间:2019-01-18 12:19:37      阅读:364      评论:0      收藏:0      [点我收藏+]

标签:draw   data   can   fun   小程序   .text   col   部分   size   

Page({

    drawCanvas: function(ctx) {// 地址
        ctx.setFontSize(14)
        ctx.setFillStyle(#9E7240)
        ctx.textAlign="center";
        const txHash = this.data.info.txHash ? this.data.info.txHash : 暂无信息
        this.drawText(ctx,txHash,187, 517 , 232,232) // 自动换行
       
        ctx.draw()
        ctx.save()
    },// 文本自动换行
    drawText: function(ctx, str, leftWidth, initHeight, titleHeight, canvasWidth) {
        var lineWidth = 0;
        var lastSubStrIndex = 0; //每次开始截取的字符串的索引
        for (let i = 0; i < str.length; i++) {
            lineWidth += ctx.measureText(str[i]).width;
            if (lineWidth > canvasWidth) {
                ctx.fillText(str.substring(lastSubStrIndex, i), leftWidth, initHeight); //绘制截取部分
                initHeight += 16; //16为字体的高度
                lineWidth = 0;
                lastSubStrIndex = i;
                titleHeight += 30;
            }
            if (i == str.length - 1) { //绘制剩余部分
                ctx.fillText(str.substring(lastSubStrIndex, i + 1), leftWidth, initHeight);
            }
        }
        // 标题border-bottom 线距顶部距离
        titleHeight = titleHeight + 10;
        return titleHeight
    },

    
})

 

微信小程序 canvas 文字自动换行

标签:draw   data   can   fun   小程序   .text   col   部分   size   

原文地址:https://www.cnblogs.com/cynthia-wuqian/p/10286493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!