DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / Export Method / Export(String,String,Object) Method

The name of the file to export

The type of export operation to perform

The quality factor to be used







In This Topic
    Export(String,String,Object) Method
    In This Topic
    Copy the image data to an external file format, with control of FileName, Format and Quality
    Syntax
    'Declaration
     
    
    Public Overloads Sub Export( _
       ByVal FileName As System.String, _
       Optional ByVal Format As System.String, _
       Optional ByVal Quality As System.Object _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim FileName As System.String
    Dim Format As System.String
    Dim Quality As System.Object
     
    instance.Export(FileName, Format, Quality)
    public void Export( 
       System.string FileName,
       System.string Format,
       System.object Quality
    )
    public procedure Export( 
        FileName: System.String;
        Format: System.String;
        Quality: System.TObject
    ); 
    public function Export( 
       FileName : System.String,
       Format : System.String,
       Quality : System.Object
    );
    public: void Export( 
       System.string* FileName,
       System.string* Format,
       System.Object* Quality
    ) 
    public:
    void Export( 
       System.String^ FileName,
       System.String^ Format,
       System.Object^ Quality
    ) 

    Parameters

    FileName

    The name of the file to export

    Format

    The type of export operation to perform

    Quality

    The quality factor to be used

    Remarks

    Any of the formats supported via Image.Save(...) or via internal codecs are supported

    See for details of how to write and configure your own codecs.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also