将生成的图像集成到 .NET 中的 webkit 浏览器中
我想使用 WebKit (http://webkitdotnet.sourceforge.net/) 的 .NET 端口来显示生成的 HTML 以及生成的图像。
我可以使用 DocumentText
属性轻松设置文档 html。如何将图像传递到浏览器中?
我找到了一个实现本地网络服务器的解决方案,但我想知道是否有更直接的方法。
I'd like to use the .NET port of WebKit (http://webkitdotnet.sourceforge.net/) to display generated HTML as well as generated images.
I can set the document html easily using the DocumentText
property. How could I pass the images into the browser?
I've found a solution implementing a local web server but I wonder if there's a more direct way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将图像转换为数据 URI,并在图像标签的“src”属性中使用这些数据。
You could convert the images into data URIs and use those in the 'src' attributes of your image tags.