'Declaration
Public Function CreateGdPictureImageFromString( _ ByVal ImageData As String _ ) As Integer
public int CreateGdPictureImageFromString( string ImageData )
public function CreateGdPictureImageFromString( ImageData: String ): Integer;
public function CreateGdPictureImageFromString( ImageData : String ) : int;
public: int CreateGdPictureImageFromString( string* ImageData )
public: int CreateGdPictureImageFromString( String^ ImageData )
Parameters
- ImageData
- String which contains the image file data.
Return Value
0: The image could not be created. Use the GetStat() method to determine the reason this method
failed.
Non-zero: GdPicture image identifier. The created image. The ReleaseGdPictureImage() method must be subsequently used to release the image from the memory.