Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.04 KB

File metadata and controls

55 lines (36 loc) · 1.04 KB

Home

Function name : GdipGetImageRawFormat

Group: GDI+ Image - Library: gdiplus


Gets a globally unique identifier (GUID) that identifies the format of this Image object.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipGetImageRawFormat(
	GpImage *image,
	GUID *format
)
  

FoxPro declaration:

DECLARE INTEGER GdipGetImageRawFormat IN gdiplus;
	INTEGER   img,;
	STRING  @ guid  

Parameters:

img [in] Handle to Image Object

guid [out] Pointer to a GUID that receives the format identifier.


Return value:

Returns GpStatus value, 0 means success.


Comments:

GUIDs that identify various file formats are defined in Gdiplusimaging.h.

The StringFromGUID2 converts a globally unique identifier (GUID) into a string of printable characters.