Available in LEADTOOLS Imaging Pro, Vector, Document, and Medical Imaging toolkits. |
#include "l_bitmap.h"
L_LTKRN_API L_INT L_SetBitmapPalette(pBitmap, hPalette)
pBITMAPHANDLE pBitmap; |
/* pointer to the bitmap handle */ |
L_HPALETTE hPalette; |
/* handle to a Windows GDI palette */ |
Replaces the specified bitmaps palette.
Parameter |
Description |
pBitmap |
Pointer to the bitmap whose palette is to be changed. |
hPalette |
Handle to the Windows GDI palette that will replace the existing bitmap palette. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
This function does not support signed data images. It returns the error code ERROR_SIGNED_DATA_NOT_SUPPORTED if a signed data image is passed to this function.
The bitmap must be 8-bit or less in order to have a valid palette. The hPalette will be duplicated. The copy of hPalette that is made by this function will be destroyed when the bitmap is freed. You must destroy the original hPalette using the Windows C DLL DeleteObject when it is no longer needed.
Required DLLs and Libraries
LTKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Platforms
Win32, x64.
See Also
Example
This example loads a bitmap, and changes its palette.
#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName #pragma pack(1) typedef struct tagLOG256PALETTE { L_UINT16 palVersion; L_UINT16 palNumEntries; PALETTEENTRY palPalEntry[256]; } LOG256PALETTE; #pragma pack() L_INT SetBitmapPaletteExample(L_VOID) { L_INT nRet; BITMAPHANDLE LeadBitmap; /* Bitmap handle for the final image */ HPALETTE hPalette=NULL; LOG256PALETTE pal; L_UINT u; /* Load the bitmap at 8 bits per pixel so that we can demonstrate how to handle its palette. */ nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("Master.JPG")), &LeadBitmap, sizeof(BITMAPHANDLE), 8, ORDER_BGR, NULL, NULL); if(nRet != SUCCESS) return nRet; /* create a grayscale palette */ pal.palVersion = 0x300; pal.palNumEntries = 256; for(u=0; u<256; u++) { pal.palPalEntry[u].peRed = (byte) u; pal.palPalEntry[u].peGreen = (byte) u; pal.palPalEntry[u].peBlue = (byte) u; pal.palPalEntry[u].peFlags = 0; } hPalette = CreatePalette((LPLOGPALETTE) &pal); /* update the palette */ nRet = L_SetBitmapPalette(&LeadBitmap, hPalette); if(nRet != SUCCESS) return nRet; /* save the image */ nRet = L_SaveBitmap(MAKE_IMAGE_PATH(TEXT("Result.bmp")), &LeadBitmap, FILE_BMP , 0, 0, NULL); if(nRet != SUCCESS) return nRet; /* Free the resized bitmap */ L_FreeBitmap(&LeadBitmap); /* Delete the Palette */ DeleteObject(hPalette); return SUCCESS; }