vote up 0 vote down star

I am trying to create a black and white mask from a color bitmap image with GDI in C#. I have seen examples that use Get/SetPixel in a loop, which are too slow. The method that interests me is one that uses only BitBlits, like this. I just can't get it to work in C#, any help is much appreciated.

EDIT: You asked this question the other day. Edit that one:

http://stackoverflow.com/questions/273624/cgdi-create-1bpp-mask-from-image

flag

closed as exact duplicate by FlySwat Nov 9 '08 at 13:50

1 Answer

vote up 0 vote down

Do you mean LockBits? Bob Powell has an overview of LockBits here; this should provide access to the RGB values, to do what you need. You might also want to look at ColorMatrix, like so.

link|flag

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