Search code examples
c#linuxmonodrawingpng

How to draw png image in mono without references to X11


I have a micro Linux in embedded system and there is no GUI. I need to create png images with some simple geometry and text labels. Standard System.Drawing in Mono refers to X11 libraries which I do not have on my device. If I have understood it right, Mono.Cairo refers to X11 too.

Is it any standalone drawing library or some other way to create .png image without some heavy references?


Solution

  • I used Mono.Cairo. It doesn't depend on X11 (in my case I build system with Buildroot tool).