vote up 0 vote down star

I have the following function in C++ managed (ref) class:

public static void Transform(Bitmap^ img);

I want to call it from C# managed code. What I do is this:

Bitmap image = new Bitmap(100, 100);
MyClass.Transform(image);

Is this correct, or do I need to use fixed statement? If so, then how?

Thank you.

flag

voted for close due to duplicate: stackoverflow.com/questions/661016/… – Davy Landman Aug 10 at 7:53

2 Answers

vote up 1 vote down check

You need to lock the bitmap's backing memory as shown here.

link|flag
vote up 1 vote down

see here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.