DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSet 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 String, _
       Optional ByVal Format As String, _
       Optional ByVal Quality As Object _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim FileName As String
    Dim Format As String
    Dim Quality As Object
     
    instance.Export(FileName, Format, Quality)
    public void Export( 
       string FileName,
       string Format,
       object Quality
    )
    public:
    void Export( 
       String^ FileName,
       String^ Format,
       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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also