4
votes

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

2
Could you provide more details on "without any success"?Dialecticus
Oh, it compiles and runs but encounters access violation, so something is really wrong. I've double-checked input xml, so i believe problem is with outputALOR

2 Answers

3
votes

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?

0
votes

Try this

    [DllImport("imageprocess.dll", CharSet = CharSet.Auto, SetLastError = true)]
    static extern int importImage(string imageData, string xmlDescriptor, out string processedImage, out string xmlOut);