virtual L_INT LBitmapBase::GetFixedPalette(pPalette, nBitsPerPixel)
Retrieves a LEAD fixed palette, based on the bits per pixel.
Pointer to an array of RGBQUAD structures that will be filled with the LEAD fixed palette. This array must be 256 elements.
Number of bits per pixel. This value is used to determine the palette to retrieve.
Value | Meaning |
---|---|
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.
Win32, x64.
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