New to Telerik UI for WinForms? Download free 30-day trial

Effects

Currently, RadImageEditor supports the following effects.

WinForms RadImageEditor Effects

Sharpen

Once you click the Sharpen button the sharpen dialog will appear and you will be able to apply the effect.

WinForms RadImageEditor Sharpen Effect

This can be performed programmatically as well. The following snippet shows how you can apply the Sharpen effect.

radImageEditor1.ImageEditorElement.Sharpen(100);
radImageEditor1.ImageEditorElement.SaveState();

radImageEditor1.ImageEditorElement.Sharpen(100)
radImageEditor1.ImageEditorElement.SaveState()

Blur

Once you click the Blur button the blur dialog will appear and you will be able to apply the effect.

WinForms RadImage-Editor Blur Effect

This can be performed programmatically as well. The following snippet shows how you can apply the Blur effect.

radImageEditor1.ImageEditorElement.Blur(100);
radImageEditor1.ImageEditorElement.SaveState();

radImageEditor1.ImageEditorElement.Blur(100)
radImageEditor1.ImageEditorElement.SaveState()

See Also

In this article