DicomObjects.NET.V8
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 String, _
       Optional ByVal Format As String, _
       Optional ByVal Quality As Object _
    ) 
    'Usage
     
    Dim instance As DicomImage
    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: .NET CLR 4.0 or higher

    See Also