
? Bitmap handle --> binary array
I am using a third party app to create a bitmap. This app can output it's
bitmap to the Clipboard as a Bitmap or as a DIB. It can also simply
create the bitmap image in memory and return its handle without sending it
to the Clipboard.
I want to copy the bitmap into a binary array so that it will be recognized
as a bitmap when I print it in an Access report.
I am looking for the best way to do this. The CopyMemory function seems like
a good bet but I need to know the size of the bitmap in order to use it.
What is best way to do this, preferably starting from the handle?