使用 html5 在画布中将文本换行为矩形
我正在学习html5。我使用画布绘制了一个矩形并在其中添加了文本。现在,如果文本长于矩形的宽度,它将被截断。
那么,有没有一种方法可以通过使用文本换行来使文本适合重新排列,因为我不想更改矩形的宽度?
I am learning html5. I have drawn a rectangle using canvas and added text in it. Now if the text is longer than the width of the rectangle it gets cutted off.
So, is there a way I can fit the text within the recatangle by using text wrapping as I do not want to change the width of the rectangle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,canvas 没有任何内置功能可以提供像自动换行 CSS 属性这样的功能。
但如果您愿意,您可以手动实现它。
Actually there is not any inbuilt function of canvas that can give such functionality like word-wrap CSS property.
But if you wish then you can implement it manually.