Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 888 Bytes

GdipGetImagePaletteSize.md

File metadata and controls

49 lines (32 loc) · 888 Bytes

Home

Function name : GdipGetImagePaletteSize

Group: GDI+ Image - Library: gdiplus


Gets the size, in bytes, of the color palette of this Image object.


Code examples:

Displaying the color palette stored in an image file

Declaration:

GpStatus WINGDIPAPI GdipGetImagePaletteSize(
	GpImage *image,
	INT *size
)
  

FoxPro declaration:

DECLARE INTEGER GdipGetImagePaletteSize IN gdiplus;
	INTEGER img,;
	INTEGER @palettesize  

Parameters:

image [in] Handle to Image Object

size [out] Size of the color palette of this Image object, in bytes.


Return value:

Returns GpStatus value, 0 means success.