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

Resize using the UI

You can use the Resize button which will open the resize dialog. In this dialog you can enter the new size of the image.

WinForms RadImage-Editor Resize Option WinForms RadImage-Editor Resize Dialog

Resize Programmatically

You can resize an image that is loaded inside the image editor with code as well. This can be achieved with the Resize method. The following snippet demonstrates this.

Resize Programmatically

radImageEditor1.ImageEditorElement.Resize(500, 500);
radImageEditor1.ImageEditorElement.SaveState();

radImageEditor1.ImageEditorElement.Resize(500, 500)
radImageEditor1.ImageEditorElement.SaveState()

In this article