GdPicture.NET.14.API
GdPicture14 Namespace / GdPictureImaging Class / SaveAsEXR Method
GdPicture image identifier.
A string that contains the name of the file to which to save the image. Can be an empty string. If empty, prompts the user to select a file. You can subsequently use the GetLastPath() method to retrieve the path of the selected file.
A combination of members of the ExrCompression enumeration.





In This Topic
SaveAsEXR Method (GdPictureImaging)
In This Topic
Saves a GdPicture image in high dynamic-range image.
Syntax
'Declaration
 
Public Function SaveAsEXR( _
   ByVal ImageID As Integer, _
   ByVal FilePath As String, _
   ByVal Compression As ExrCompression _
) As GdPictureStatus
public GdPictureStatus SaveAsEXR( 
   int ImageID,
   string FilePath,
   ExrCompression Compression
)
public function SaveAsEXR( 
    ImageID: Integer;
    FilePath: String;
    Compression: ExrCompression
): GdPictureStatus; 
public function SaveAsEXR( 
   ImageID : int,
   FilePath : String,
   Compression : ExrCompression
) : GdPictureStatus;
public: GdPictureStatus SaveAsEXR( 
   int ImageID,
   string* FilePath,
   ExrCompression Compression
) 
public:
GdPictureStatus SaveAsEXR( 
   int ImageID,
   String^ FilePath,
   ExrCompression Compression
) 

Parameters

ImageID
GdPicture image identifier.
FilePath
A string that contains the name of the file to which to save the image. Can be an empty string. If empty, prompts the user to select a file. You can subsequently use the GetLastPath() method to retrieve the path of the selected file.
Compression
A combination of members of the ExrCompression enumeration.

Return Value

A member of the GdPictureStatus enumeration.
Remarks

This method requires the Image Documents component to run.

See Also