views:

43

answers:

2

Hello, all.

Here is the problem - i have some C image processing library that i need to use from C# application. Lack of experience with DllImport strikes me hard for now.

The function i need to use looks like:


    IMAGEPROCESS_API const int importImage
        (
        const unsigned char* image,
        const char* xmlInput,
        unsigned char** resultImage,
        char** xmlOutput
        );

So, it accepts raw image data, xml containing parameters and image width'height and then return processed image and some xml report.

For now im trying to approach it like this:

 [DllImport("imageprocess.dll",CallingConvention = CallingConvention.StdCall,EntryPoint = "importImage",CharSet=CharSet.Ansi)]
        private static extern int ImportImageNative(IntPtr imageData, String xmlDescriptor, out IntPtr processedImage, out IntPtr xmlOut);

but without any success.

Any suggestions how should it be done?

Edit: still no luck (( done it by messy C++ CLI for now

A: 

For the output parameters, you should access the returned data using Marshal.PtrToStringAnsi.

Since the original memory was allocated within the unmanaged API, it's still your responsibility to free it as appropriate.

I also think that you should use String on both the first two parameters, not sure why the first one is an IntPtr?

Steve Townsend
Because i get an IntPtr immediately by System.Drawing.Bitmap.GetHBitamp();
ALOR
@ALOR - I see, this is not a C-string then and you have it right. That's `Bitmap` not `Bitamp` I think?
Steve Townsend
Yeap, sry for misspelling
ALOR
A: 

Try this

    [DllImport("imageprocess.dll", CharSet = CharSet.Auto, SetLastError = true)]
    static extern int importImage(string imageData, string xmlDescriptor, out string processedImage, out string xmlOut);
ohadsc
Ok, but how should i 'cast' byte[] to string and vice versa?
ALOR
OK means it worked (as in - not crashed) ? What byte[] are you referring to? The signature you posted has only char arrays / pointers
ohadsc