Libraries Needed for GDI in Mono Using xsp

Here's the situation. I am creating graphics (using GDI +) in an asp page running under mono xsp. This works fine in my IDE as the IDE runs under the GUI, however, when I try to run it on the GUI server, it fails (I am assuming that some of the libraries needed to run Gnome are not installed). What libraries and how to install them are required for GDI code to work under Mono without installing a GUI.

0


source to share


2 answers


I believe the name of the library you want is libgdiplus, although I'm not sure if it has an X11 dependency.



+2


source


the mono implementation of System.Drawing builds on top of the cairo graphics library. See Monographic documentation here .



+1


source







All Articles