如何使用 C# 将动态 XAML 转换为 PNG 或 GIF?
我正在创建动态模板化 XAML 设计,我想将其从 C# 代码转换为 PNG 或 GIF。
有什么想法吗?
I'm creating dynamic templated XAML designs that I would like to convert to PNG or GIF from my C# code.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
RenderTargetBitmap
类。 MSDN 有示例说明如何转换
Visual 到图像。
You need to use the
RenderTargetBitmap
class. MSDN has an example of how to convert aVisual
to an image.找到一篇关于如何执行此操作的有趣文章...
使用服务器端 WPF 将 XAML 转换和自定义为 PNG
Found an interesting article on how to do this...
Converting and customizing XAML to PNG with server-side WPF