Link to home
Start Free TrialLog in
Avatar of abrakadabra1
abrakadabra1

asked on

Drawing on a TBitmap using bits.

Hi

I was wondering if there is an easy way to draw on a TBitmap's canvas a bit map ?? (eg. '0001100011' where zeros are white and ones are black pixels)

THX in advance for any help
ASKER CERTIFIED SOLUTION
Avatar of 2266180
2266180
Flag of United States of America image

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
If you're interested in speed, you may define a mask with 1's and 0's and then use MaskBlt.
(I mean using the same bits you already have, not bytes)...