使用 html5 创建图像
我想知道是否可以使用 html5 创建图像。 目前我正在使用画布创建文本,现在我想将该文本转换为图像。
I wanted to know if it is possible to create an image using html5.
Currently i am creating a text using canvas, now i want to convert that text into an image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了将画布保存到图像文件,您可以使用Nihilogic的代码。
使用画布文本函数。
例如:
In order to save the canvas to an image file, you can use Nihilogic's code.
Use the canvas text functions.
For example:
创建一个图像 DOM 元素,并将 src 设置为 canvas.toDataURL 方法。
Create an image DOM element, and set the src to the canvas.toDataURL method.