GDI+ support on linux

Started by
2 comments, last by Fiddler 9 years, 7 months ago

As far as I know GDI+ is a Windows-only API, anyway I've read around that one might write his code in GDI+ and be able to port it to linux with something like this:

Is this true? Does anyone have experience of GDI+ applications that can also run on linux?

Advertisement

As far as I know GDI+ is a Windows-only API, anyway I've read around that one might write his code in GDI+ and be able to port it to linux with something like this:

Is this true? Does anyone have experience of GDI+ applications that can also run on linux?


https://www.winehq.org/docs/winelib-guide/winelib-introduction

Yes it is sort of true, if your windows binary will run with wine then your windows source code will most likely compile using winelib aswell (Making porting quite a bit easier)
[size="1"]I don't suffer from insanity, I'm enjoying every minute of it.
The voices in my head may not be real, but they have some good ideas!

There's also the libgdiplus library used by Mono: http://www.mono-project.com/docs/gui/drawing/

GDI+ is available on Linux through http://www.mono-project.com/docs/gui/drawing/. It only makes sense to use from C# - if you are using C or C++ there are much better options available.

[OpenTK: C# OpenGL 4.4, OpenGL ES 3.0 and OpenAL 1.1. Now with Linux/KMS support!]

This topic is closed to new replies.

Advertisement