This function returns the number of bytes per raster in the DIB.
Copy Code
|
|
---|---|
AT_INT ACCUAPI IG_DIB_info_raster_size_get( HIGDIBINFO hDIB ); |
Name | Type | Description |
---|---|---|
hDIB | HIGDIBINFO | DIB info handle. |
Returns DIB raster size.
All pixel formats supported by ImageGear for C and C++.
MFC PDF Demo
Copy Code
|
|
---|---|
HIGDIBINFO hDIBInfo; /* DIB info handle */ AT_INT rasterSize; /* Returned raster size */ rasterSize = IG_DIB_info_raster_size_get(hDIBInfo); |
For all images except 1-bit images, the returned number is precise.
For 1-bit images, the function returns the raster size assuming that 8 pixels are packed per byte. In reality, ImageGear internally stores 1-bit images using run ends scheme. The size of the raster stored in memory depends on the content of the raster, but usually the raster occupies much less space than the number returned by IG_DIB_info_raster_size_get.