[Mono-dev] A few mono issues

2014-07-09 Thread JamesSouth
Hi all, I run a fairly successful .NET open source library called ImageProcessor that I am trying to port to Mono. Most things are now working except for two issues. https://github.com/JimBobSquarePants/ImageProcessor/issues/64 https://github.com/JimBobSquarePants/ImageProcessor/issues/64 I

Re: [Mono-dev] A few mono issues

2014-07-09 Thread Nikita Tsukanov
1) You have to map your DllImport to corresponding *nix libraries. I.e. there is no such thing as gdi32.dll there 2) Mono's System.Drawing is quite limited, since it's just a bridge to Cairo library. You can't use high quality smoothing and image scale algorithms for example Consider using

Re: [Mono-dev] A few mono issues

2014-07-09 Thread Edward Ned Harvey (mono)
From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- boun...@lists.ximian.com] On Behalf Of JamesSouth I run a fairly successful .NET open source library called ImageProcessor that I am trying to port to Mono. Most things are now working except for two issues. There's