I am using BitBlt WinAPI to compose a bitmap using C++, and I was wondering what flags do I need to use to invert the colors in it?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

What did you try?

BitBlt:

  • DSTINVERT Inverts the destination rectangle.
  • PATINVERT Combines the colors of the brush currently selected in hdcDest, with the colors of the destination rectangle by using the Boolean XOR operator.
  • SRCINVERT Combines the colors of the source and destination rectangles by using the Boolean XOR operator.
link|improve this answer
Yeah, those don't invert them. It seems like I'll have to convert it into bits and do it manually :( – ahmd0 Feb 17 at 9:16
I'd expect those to work, perhaps you tried it in a wrong way. – Roman R. Feb 17 at 9:37
@ahmd0 How do you set the pixels of the bitmap that you pass to bitblt? – Paolo Brandoli Feb 17 at 10:12
@Paolo: CreateDIBSection gets you bitmap handle + bits pointer. – Roman R. Feb 17 at 10:24
@Paolo Brandoli I loaded them from an icon with GetIconInfo. And, no, I did try everything. So eventually I had to use GetDIBits to get the actual bits and do the work manually. – ahmd0 Feb 17 at 22:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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