VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Fft Namespace / FrequencySpectrumVisualizerCommand Class / SpectrumImageSize Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    SpectrumImageSize Property (FrequencySpectrumVisualizerCommand)
    In This Topic
    Gets or sets the size of the visualized spectrum.
    Syntax
    'Declaration
    
    <DescriptionAttribute("The size of the visualized spectrum.")>
    <DefaultValueAttribute(1024)>
    Public Property SpectrumImageSize As System.Int32
    
    
    [Description("The size of the visualized spectrum.")]
    [DefaultValue(1024)]
    public System.Int32 SpectrumImageSize { get; set; }
    
    
    [Description("The size of the visualized spectrum.")]
    [DefaultValue(1024)]
    public: __property System.Int32 get_SpectrumImageSize();
    public: __property void set_SpectrumImageSize(
    System.Int32 value
    );
    [Description("The size of the visualized spectrum.")]
    [DefaultValue(1024)]
    public:
    property System.Int32 SpectrumImageSize { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    0 - size of the output image is determined automatically, i.e. the output image size will be calculated as the closest power of 2 to the largest input image side; otherwise, the property value will be used as the output image size.
    Value should be a power of 2.
    Exceptions
    ExceptionDescription
    Thrown if value is less than 0 or not a power of 2.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also