Completed
Last Updated: 20 Apr 2022 07:59 by ADMIN
Release R2 2022

Use this code and click the save icon: 

        public RadForm1()
        {
            InitializeComponent();
            this.radImageEditor1.ImageSaved+=radImageEditor1_ImageSaved;

            this.radImageEditor1.OpenImage(@"..\..\London_01.jpg");
        }

        private void radImageEditor1_ImageSaved(object sender, EventArgs e)
        {
            RadMessageBox.Show("Saved!");
        }

You will notice that the ImageSaved event is not fired.

Completed
Last Updated: 31 Jan 2022 16:18 by ADMIN
Release R1 2022 SP1
  1. To reproduce use an image with horizontal and/or vertical resolution different from 96.
  2. Open with with RadImageEditor.
  3. Check this.radImageEditor.CurrentBitmap.HorizontalResolution and you will see that it has a value of 96.
Completed
Last Updated: 15 Dec 2020 09:23 by ADMIN
Release R1 2021 (LIB 2020.3.1215)

1.Load an image to RadImageEditor and click the save button:

2. Enter the file name and select .jpeg extension:

3. Even though the file is saved as .jpg, its stores .png content:

 

Completed
Last Updated: 11 Apr 2019 08:52 by Dimitar
Release R2 2019 (LIB 2019.1.415)

When I select Auto option in zoom drop-down list the image will not be resized to fit available space. The only way to auto-fit the image is to type "Auto" in drop-down list. Also, when editor form is resized while "Auto" option is selected the zoom will not be updated.

Additional methods OnResize and DropDownList_SelectedIndexChanged are required to update the zoom, because in DropDownList_TextChanged event handler this.dropDownList.SelectedIndex is always set to -1 when any option is selected with mouse, and will be different from -1 only when a text matching an option is entered with keyboard.