Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.03 KB

GdipCreateImageAttributes.md

File metadata and controls

48 lines (31 loc) · 1.03 KB

Home

Function name : GdipCreateImageAttributes

Group: GDI+ ImageAttributes - Library: gdiplus


Creates new ImageAttributes object.


Code examples:

GDI+: Color Transparency

Declaration:

GpStatus WINGDIPAPI GdipCreateImageAttributes(
	GpImageAttributes **imageattr)  

FoxPro declaration:

DECLARE INTEGER GdipCreateImageAttributes IN gdiplus;
	INTEGER @imageattr  

Parameters:

imageattr [out] Handle to the ImageAttributes object.


Return value:

Returns GpStatus value, 0 means success.


Comments:

An ImageAttributes object contains information about how bitmap and metafile colors are manipulated during rendering.

When no longer needed the ImageAttributes object must be deleted by calling the GdipDisposeImageAttributes function.