使用 xsp 在 Mono 中使用 GDI 所需的库
情况是这样的。 我正在 Mono xsp 下运行的 asp 页面上创建一些图形(使用 GDI+)。 这在我的开发环境中非常有效,因为我的开发环境在 GUI 下运行,但是当我尝试在无 GUI 服务器上运行它时,它会失败(我假设由于 Gnome 运行所需的某些库)未安装)。 要在无 GUI 安装的 Mono 下运行 GDI 代码,需要哪些库以及如何安装它们。
Here is the situation. I am creating some graphics (using GDI+) on an asp page running under mono xsp. This works great in my development environment as my development environment is running under a GUI, however when I try running it on a GUI-less server, it fails (I am assuming due to the fact that certain libraries which are required for Gnome to run aren't installed). What libraries, and how would I install them, are required to get GDI code running under Mono on a GUI-less installation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您想要的库的名称是 libgdiplus,但我不确定它是否依赖于 X11。
I believe the name of the library you want is libgdiplus, though I'm not sure if it has a dependency on X11.
mono 的 System.Drawing 实现是建立在 cairo 图形库之上的。 请参阅此处的 Mono 文档。
mono's implementation of System.Drawing is build on top of the cairo graphics library. See the mono documentation here.