Copy image to new Windows DIB
Visual Basic |
---|
Public Function SaveToDIB() As Long |
This method creates Device Independent Bitmap (DIB). DIB starts with BITMAPINFOHEADER structure. Use Window's GlobalFree method to free bitmap memory and avoid memory leaks
Sub T_Bitmap(ByRef Img As CiImage) Dim hBitmap ' DDB test hBitmap = Img.SaveToBitmap Img.Clear Img.OpenFromBitmap hBitmap End Sub Sub T_Dib(ByRef Img As CiImage) Dim hDib ' DIB test hDib = Img.SaveToDIB Img.Clear Img.OpenFromBitmap hDib End Sub