JavaScript 程序图像
是否可以在javascript(无需连接到服务器)中创建图像,创建后可以将其放置在网站上?例如,我仅从服务器发送公式,客户端根据它创建图像,我可以将其用作 jpg/png/bmp 背景(并重复等)。
Is it possible to create in javascript(without connecting to server) image, that after creation can be placed on website? In example, I send only formula from server, and client creates image based on it which I can use as jpg/png/bmp background(and do repeating etc).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。 HTML5 中有一个 canvas 元素。它可用于 2d 图像和 3d 动画等。
这里是一组关于它的教程。
您的意思是这样的:
演示 和 带文字
Yes. There is a canvas element in HTML5. It can be used for 2d images and 3d animations etc.
Here is a set of tutorials about it.
Do you mean something like this:
Demo and with text
如果您想要跨浏览器解决方案,请查看 Raphael。
If you want a cross browser solution look into Raphael.