[Mono-dev] InterOp problems with 1.2.6pre2

2007-11-24 Thread Prakash Punnoor
Hi, mono 1.2.6pre1 and pre2 on Linux x86_64 can't run some C# bindings to a C library (an ac3 encoder), which works perfectly with vs2008beta2 and .net2.0 target on x86. You can get the sources at http://sourceforge.net/projects/aften/ in svn (revision 659). Compile it using cmake. To build

[Mono-dev] Remoting IplImage/Bitmap return type problem

2007-11-24 Thread [EMAIL PROTECTED]
Hi: I still have my problem about how to get the remoting object picture from a client. First I try to make a property and a method to return a Bitmap, but finally I only get some class/type is not marked as Serializable..., and now I try to use a IplImage from a basic OpenCv implementation

[Mono-dev] Remoting Server Events problem

2007-11-24 Thread [EMAIL PROTECTED]
Hi: I know that is very possible that this is a basic remoting question, but I read some info about the native .NET approach used with remoting and I think that my code is supose it to work: I write a class with a method to trigger some event (this is the object resgitered by the remoting

Re: [Mono-dev] Remoting IplImage/Bitmap return type problem

2007-11-24 Thread Euan MacInnes
Hi Mauricio, One option to do this is to extract the bitmap as a series of bytes, and then stream the byte array across. given a bitmap called mybitmap MemoryStream ms = New MemoryStream(); mybitmap.Save(ms, ImageFormat.Jpeg); // Save it as Jpeg if you don't mind it being compressed

Re: [Mono-dev] Remoting IplImage/Bitmap return type problem

2007-11-24 Thread [EMAIL PROTECTED]
Thanks Euan, I do the stream/byte[] sugestion and work perfectly, now I'm going to try to do something like that with the opencv iplimage format. thanks Mauricio Euan MacInnes wrote: Hi Mauricio, One option to do this is to extract the bitmap as a series of bytes, and then stream the