关于数字替换图片数字问题的两种解决方案(结合canvas动态画图)(正则替换和双for循环)...

本文介绍了一种使用图片替换特殊字体数字的方法,通过正则匹配实现数字到图片的转换,并利用wepy下载文件及Canvas API完成绘制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

最近做了一个数字和图片对应转化的需求,因为产品需求的数字是特殊字体,系统默认字体需要用UI给的图片进行相应替换。注:红色字体是核心代码
下面是两种解决方案:
1.使用正则匹配替换arguments[0]存入数组
formatLetter(clockInSum, ctx) {

letterbox.map(function(value, index, array) {
console.log('value===', value, index)
wepy.downloadFile({
url: value
}).then((res5) => {
console.log('输出的res5===', res5.tempFilePath)
index = index + 1
var letVal = index * 100
var topVal = index * 100
ctx.drawImage(res5.tempFilePath, letVal, topVal, 50, 50)
ctx.draw(true)
})
return true
})
}


formatLetter(clockInSum, ctx) {
   
letterbox.map(function(value, index, array) {
console.log('value===', value, index)
wepy.downloadFile({
url: value
}).then((res5) => {
console.log('输出的res5===', res5.tempFilePath)
index = index + 1
var letVal = index * 100
var topVal = index * 100
ctx.drawImage(res5.tempFilePath, letVal, topVal, 50, 50)
ctx.draw(true)
})
return true
})
}


相比较而言 还是第一种正则匹配替换的方式更好一些 大家可以试试
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值