Link to home
Start Free TrialLog in
Avatar of fantasma110899
fantasma110899

asked on

Bitmaps....

I have 2 bitmaps. They are almost equals. I need get  the differences between them in a new bitmap, but just the differences. How can I do this?

               Thanks.
ASKER CERTIFIED SOLUTION
Avatar of nietod
nietod

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of fantasma110899
fantasma110899

ASKER

Do I must compare each bit in the two bitmaps? There is not an "AND" or "OR" between two bitmaps?  
You can use BitBlt() to do that sort of thing, but it probably is not what you want.  First of all it will be useful only if you want to find exact matches, and after it is done you will need to scan the results to find out which pixels have changed.