'Declaration
Public Overloads Function CreateGdPictureImageFromHBitmap( _ ByVal hBitmap As IntPtr _ ) As Integer
public int CreateGdPictureImageFromHBitmap( IntPtr hBitmap )
public function CreateGdPictureImageFromHBitmap( hBitmap: IntPtr ): Integer;
public function CreateGdPictureImageFromHBitmap( hBitmap : IntPtr ) : int;
public: int CreateGdPictureImageFromHBitmap( IntPtr hBitmap )
public: int CreateGdPictureImageFromHBitmap( IntPtr hBitmap )
Parameters
- hBitmap
- A pointer to a HBitmap object based on Microsoft® Windows® Graphics Device Interface (GDI), as an IntPtr value. This pointer must be initialized with the proper image data and it must be disposed of by the user as well.
Return Value
A unique image identifier of the GdPicture image representing the newly created image. The returned value is non-zero if the image is successfully created. Please first of all use the GetStat method to determine if this method has been successful.
Be aware that you need to release the image with the ReleaseGdPictureImage method after being used.