DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / Export Method / Export(Stream,String,Object) Method

The stream into which the image is written

The file format you would like to export image to

The quality factor to be used




In This Topic
    Export(Stream,String,Object) Method
    In This Topic
    Export DicomImage to supported Image Format
    Syntax
    'Declaration
     
    Public Overloads Sub Export( _
       ByVal Stream As Stream, _
       ByVal Format As String, _
       ByVal Quality As Object _
    ) 
    'Usage
     
    Dim instance As DicomImage
    Dim Stream As Stream
    Dim Format As String
    Dim Quality As Object
     
    instance.Export(Stream, Format, Quality)
    public void Export( 
       Stream Stream,
       string Format,
       object Quality
    )
    public:
    void Export( 
       Stream^ Stream,
       String^ Format,
       Object^ Quality
    ) 

    Parameters

    Stream

    The stream into which the image is written

    Format

    The file format you would like to export image to

    Quality

    The quality factor to be used

    Remarks
    This method uses the internal DicomObjects export methods, including the ability to export multi-frame GIF etc.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also