DicomObjects.NET Core Documentation
DicomObjects.Video Namespace / VideoCompressionOptions Class / OutputSize Property



In This Topic
    OutputSize Property
    In This Topic
    The size of the output frames to be encoded
    Syntax
    'Declaration
     
    
    Public Property OutputSize As Size
    'Usage
     
    
    Dim instance As VideoCompressionOptions
    Dim value As Size
     
    instance.OutputSize = value
     
    value = instance.OutputSize
    public Size OutputSize {get; set;}
    public:
    property Size OutputSize {
       Size get();
       void set (    Size value);
    }
    Remarks
    By default, this is the same as the size of the DICOm frames, but some codecs (especially when combined with DICOM rules) have specific requirements, so this can be set independently. If the input and output rates differ, then the ffmpeg "pad" and/or "scale" filters are change the size as required.
    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