alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class ImageEditorFinetuneSettings

    Represents the settings for finetune an image in the SfImageEditor.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    ImageEditorFinetuneSettings
    Implements
    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    Inherited Members
    ComponentBase.Assets
    ComponentBase.AssignedRenderMode
    ComponentBase.BuildRenderTree(RenderTreeBuilder)
    ComponentBase.DispatchExceptionAsync(Exception)
    ComponentBase.InvokeAsync(Action)
    ComponentBase.InvokeAsync(Func<Task>)
    ComponentBase.OnAfterRender(bool)
    ComponentBase.OnAfterRenderAsync(bool)
    ComponentBase.OnInitialized()
    ComponentBase.OnInitializedAsync()
    ComponentBase.OnParametersSet()
    ComponentBase.OnParametersSetAsync()
    ComponentBase.RendererInfo
    ComponentBase.SetParametersAsync(ParameterView)
    ComponentBase.ShouldRender()
    ComponentBase.StateHasChanged()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    OwningComponentBase.Dispose(bool)
    OwningComponentBase.IsDisposed
    OwningComponentBase.ScopedServices
    Namespace: Syncfusion.Blazor.ImageEditor
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ImageEditorFinetuneSettings : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
    Remarks

    The finetune settings include brightness, contrast, hue, saturation, exposure, opacity, and blur. Use the Brightness, Contrast, Hue, Saturation, Exposure, Opacity, and Blur properties to specify the minimum, maximum, and default values for each finetune setting.

    Constructors

    ImageEditorFinetuneSettings()

    Declaration
    public ImageEditorFinetuneSettings()

    Properties

    Blur

    Gets or sets the options to configure the blur settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Blur { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default value for blur. The default minimum value is 0, maximum value is 100, and the default value is 0.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the blur settings.

    Brightness

    Gets or sets the options to configure the brightness settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Brightness { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default values for brightness. The default minimum value is -100, the default maximum value is 100, and the default value is 0.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the brightness settings.

    Examples

    The below code example, explains about setting the brightness options using finetune settings in image editor.

    <SfImageEditor>
        <ImageFinetuneSettings Brightness="@brightness"/>
    </ SfImageEditor>
    @code {
        private brightness = new ImageFinetuneValue {Min = 0. Max = 100, DefaultValue= 50}
    }

    Contrast

    Gets or sets the options to configure the contrast settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Contrast { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default value for contrast. The default minimum value is -100, maximum value is 100, and the default value is 0.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the contrast settings.

    Exposure

    Gets or sets the options to configure the exposure settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Exposure { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default value for exposure. The default minimum value is 100, maximum value is -100, and the default value is 0.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the exposure settings.

    Hue

    Gets or sets the options to configure the hue settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Hue { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default value for hue. The default minimum value is 0, maximum value is 100, and the default value is 0.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the hue settings.

    Opacity

    Gets or sets the options to configure the opacity settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Opacity { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default value for opacity. The default minimum value is 0, maximum value is 100, and the default value is 100.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the opacity settings.

    Saturation

    Gets or sets the options to configure the saturation settings in the SfImageEditor.

    Declaration
    [Parameter]
    public ImageFinetuneValue Saturation { get; set; }
    Property Value
    Type Description
    ImageFinetuneValue

    An ImageFinetuneValue object that specifies the minimum, maximum, and default value for saturation. The default minimum value is -100, maximum value is 100, and the default value is 0.

    Remarks

    Use the ImageFinetuneValue class to specify the options for the saturation settings.

    Implements

    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved