小程序
小游戏
企业微信
微信支付
扫描小程序码分享
iPhone经常发现生成图片不正常,用canvas生成图片经常异常巨大的情况,但重复生成几次又正常了,如下图
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
Painter了解一下
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
推荐:https://developers.weixin.qq.com/community/develop/article/doc/000ac686c5c5506f18b87ee825b013
发现bug,当文字都是表情符号并且超过设定的最大宽度时会死循环,如:⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐
位置:
pen.js -> _fillAbsText(view)->while ((start + alreadyCount <= view.text.length) && (width - measuredWith > view.css.fontSize.toPx() || measuredWith > width))(...)
解决方法,暂时没其他问题了,不知道其他的有没有影响
if (measuredWith < width) {
text = view.text.substr(start, ++alreadyCount);//原来只有这个会死循环
break;//新增
}
不止ios 已经很久了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
Painter了解一下
推荐:https://developers.weixin.qq.com/community/develop/article/doc/000ac686c5c5506f18b87ee825b013
发现bug,当文字都是表情符号并且超过设定的最大宽度时会死循环,如:⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐
位置:
pen.js -> _fillAbsText(view)->while ((start + alreadyCount <= view.text.length) && (width - measuredWith > view.css.fontSize.toPx() || measuredWith > width))(...)
解决方法,暂时没其他问题了,不知道其他的有没有影响
if (measuredWith < width) {
text = view.text.substr(start, ++alreadyCount);//原来只有这个会死循环
break;//新增
}
不止ios 已经很久了