#include "l_bitmap.h"
L_LTKRN_API L_INT L_ConvertBuffer(pBuffer, nWidth, nBitsPerPixelSrc, nBitsPerPixelDst, nOrderSrc, nOrderDst, pPaletteSrc, pPaletteDst)
Converts data in the specified buffer to the specified bits per pixel and color order. You can convert from any bits per pixel to any bits per pixel.
Pointer to the input buffer.
Image width, in pixels.
Input bits per pixel. Possible values are 1, 2, 3, 4, 5, 6, 7, 8, 16, 24, 32, 48, and 64.
Output bits per pixel. Use 0 for 8-bit grayscale.
The input color order. Possible values are:
Value | Meaning |
---|---|
ORDER_RGB | [0] The input colors are in red-green-blue order. |
ORDER_BGR | [1] The input colors are in blue-green-red order. |
ORDER_GRAY | [2] 12, 16 or 32-bit grayscale image. 12, 16 and 32-bit grayscale images are only supported in Document and Medical Imaging toolkits. |
0 | The data is 8 bits per pixel or less. |
ORDER_ROMM | [5] The input colors are in ROMM order. ROMM only supports 24 and 48-bit images. |
The output color order. Possible values are:
Value | Meaning |
---|---|
ORDER_RGB | [0] The output colors are in red-green-blue order. |
ORDER_BGR | [1] The output colors are in blue-green-red order. |
ORDER_GRAY | [2] 12, 16 or 32-bit grayscale image. 12, 16 and 32-bit grayscale images are only supported in Document and Medical Imaging toolkits. |
0 | The data is 8 bits per pixel or less. |
ORDER_ROMM | [5] The output colors are in ROMM order. ROMM only supports 24 and 48-bit images. |
Pointer to the palette for the existing data, before conversion. If the data is converted from 16 or 24 bits per pixel, use NULL for no palette.
Pointer to the palette for the converted data. If the data is converted to 16 or 24 bits per pixel, use NULL for no palette.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Support for 12, 16 and 32-bit grayscale images is only available in the Document and Medical Imaging toolkits.
The conversion uses only one buffer, which must be large enough to hold the data before and after conversion.
Image data that is 8 bits per pixel or less must use a palette, and this function can use such data as input, output, or both. Therefore, you may need to specify the palette for the input, or for the output, or both.
Required DLLs and Libraries
Win32, x64, Linux.
This example loads a temporary bitmap at 8 bits per pixel, creates a new
bitmap at 16 bits per pixel, and uses L_ConvertBuffer to convert data from
the temporary bitmap to the new one.
L_INT ConvertBufferExample(HWND hWnd)
{
L_INT nRet;
BITMAPHANDLE LeadBitmap; /* Bitmap handle for the final image */
RGBQUAD FixedPalette[256]; /* Temporary palette */
BITMAPHANDLE TmpBitmap; /* Bitmap handle to hold the input image */
L_UCHAR* pBuf; /* Buffer to hold the row */
HGLOBAL hBuf; /* Handle to the buffer */
L_INT i; /* Loop counter */
/* Load the bitmap, at 8 bits per pixel */
nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("ImageProcessingDemo\\Image3.cmp")), &TmpBitmap, sizeof(BITMAPHANDLE), 8, 0, NULL, NULL);
if(nRet != SUCCESS)
return nRet;
/* Create a new 16-bit bitmap */
nRet = L_CreateBitmap(&LeadBitmap, sizeof(BITMAPHANDLE), TYPE_CONV, TmpBitmap.Width, TmpBitmap.Height,
16, ORDER_BGR, NULL, TmpBitmap.ViewPerspective, NULL, 0);
if(nRet != SUCCESS)
return nRet;
/* Get the LEAD fixed palette for an 8-bit image */
nRet = L_GetFixedPalette(FixedPalette, 8);
if(nRet != SUCCESS)
return nRet;
/* Allocate and lock the buffer */
hBuf = GlobalAlloc(GMEM_MOVEABLE,LeadBitmap.BytesPerLine);
pBuf = ( L_UCHAR*)GlobalLock( hBuf );
/* Process each row from TmpBitmap to LeadBitmap */
L_AccessBitmap(&LeadBitmap);
L_AccessBitmap(&TmpBitmap);
for(i=0; i < TmpBitmap.Height; i++)
{
nRet =(L_INT ) L_GetBitmapRow(&TmpBitmap, pBuf, i, TmpBitmap.BytesPerLine);
if(nRet < 1)
return nRet;
nRet = L_ConvertBuffer(pBuf, TmpBitmap.Width,
TmpBitmap.BitsPerPixel, LeadBitmap.BitsPerPixel,
TmpBitmap.Order, LeadBitmap.Order, FixedPalette, NULL);
if(nRet != SUCCESS)
return nRet;
nRet = (L_INT)L_PutBitmapRow(&LeadBitmap, pBuf, i, LeadBitmap.BytesPerLine);
if(nRet < 1)
return nRet;
}
L_ReleaseBitmap(&LeadBitmap);
L_ReleaseBitmap(&TmpBitmap);
/* Free memory that we no longer need */
GlobalUnlock(hBuf);
GlobalFree(hBuf);
nRet = L_SaveBitmap(MAKE_IMAGE_PATH(TEXT("Result.BMP")), &LeadBitmap, FILE_BMP, 24, 0, NULL);
if(nRet != SUCCESS)
return nRet;
/* Free the temporary bitmap */
if(TmpBitmap.Flags.Allocated)
L_FreeBitmap(&TmpBitmap);
if(LeadBitmap.Flags.Allocated)
L_FreeBitmap(&LeadBitmap);
/* Force paint palette creation */
SendMessage (hWnd, WM_QUERYNEWPALETTE, 0, 0L);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document