Effects
Currently, RadImageEditor supports the following effects.
Sharpen
Once you click the Sharpen button the sharpen dialog will appear and you will be able to apply the 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.
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()