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.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / SaveAsJP2 Method / SaveAsJP2(Int32,String) Method

SaveAsJP2(Int32,String) Method

In This Topic
Saves a GdPicture image as JPEG-2000 File image.
Syntax
'Declaration
 
Public Overloads Function SaveAsJP2( _
   ByVal ImageID As Integer, _
   ByVal FilePath As String _
) As GdPictureStatus
public GdPictureStatus SaveAsJP2( 
   int ImageID,
   string FilePath
)
public function SaveAsJP2( 
    ImageID: Integer;
    FilePath: String
): GdPictureStatus; 
public function SaveAsJP2( 
   ImageID : int,
   FilePath : String
) : GdPictureStatus;
public: GdPictureStatus SaveAsJP2( 
   int ImageID,
   string* FilePath
) 
public:
GdPictureStatus SaveAsJP2( 
   int ImageID,
   String^ FilePath
) 

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.

Return Value

A member of the GdPictureStatus enumeration.
See Also