#include "ltwrappr.h"
virtual L_INT LBitmapBase::GetFixedPalette(pPalette, nBitsPerPixel)
LPRGBQUAD pPalette; |
pointer to an array of RGBQUAD structures |
L_INT nBitsPerPixel; |
bits per pixel |
Retrieves a LEAD fixed palette, based on the bits per pixel.
Parameter |
Description |
pPalette |
Pointer to an array of RGBQUAD structures that will be filled with the LEAD fixed palette. This array must be 256 elements. |
nBitsPerPixel |
Number of bits per pixel. This value is used to determine the palette to retrieve. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Use this function to get the LEAD fixed palette for a specific bits per pixel. You can specify 0 bits per pixel to create an 8-bit grayscale palette.
Required DLLs and Libraries
LTDIS For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64.
Functions: |
LBitmapBase::SetPalette, LBitmapBase::GetPalette, LBitmapBase::DupPalette, LBitmapBase::CreatePaintPalette, Class Members |
Topics: |
|
|
L_INT LBitmapBase__GetFixedPaletteExample()
{
RGBQUAD FixedPalette[256];
LBitmapBase MyBitmap;
if(MyBitmap.GetFixedPalette( FixedPalette, 8)==SUCCESS)
{
//do something with the returned palette
}
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