MVC 中的动态图像(Stack Exchange Beta 站点)
我一直在查看 Stack Exchange Beta 网站,并注意到每个进入测试版的网站顶部都有一个图形,其中包含“Web 应用程序 Beta”或“游戏 Beta”等字样。
我想知道这些图像是单独创建的还是以某种方式动态创建的?有没有办法使用 MVC.NET 动态创建 PNG?
如果这个论坛的答案太复杂,有人可以给我指出一些有帮助的文章吗?
预先感谢
嗅探者
I've been looking at the Stack Exchange Beta sites and noticed that each site that goes into beta has a graphic at the top with the words 'Web Applications Beta' or 'Gaming Beta' for example.
I wondered if these images are individually created or if the are created dynamically somehow? Is there a way using MVC.NET to create PNGs on the fly?
If the answer is too complicated for this forum, can anybody point me to any articles that will help?
Thanks in advance
Sniffer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有一种方法可以使用 ASP.NET MVC 动态生成和提供图像。这是一个示例:
然后只需将此图像包含在视图中即可:
Yes there is a way to generate and serve images dynamically with ASP.NET MVC. Here's an example:
And then simply include this image in the view:
这对我有用。
要使用它,只需按照达林所说的做同样的事情
This worked for me.
To use it just do the same thing as Darin said