Unplanned
Last Updated: 26 Mar 2020 10:03 by ADMIN
The loaded into the ImageEditor image is not downloaded with its original extension if a query string is added to the end of the image name. It is saved as PNG instead:
 
Steps to reproduce:
 
1. Run the code below and open the SaveImage dialog
2. Chose the "Download image" option and click OK
 Result: The image is downloaded as PNG
 
         <telerik:RadImageEditor RenderMode="Lightweight" ID="RadImageEditor1" runat="server"
            ImageUrl="~/images_1/test.jpg?test123" Width="100%" Skin="Silk">
        </telerik:RadImageEditor>   
Need More Info
Last Updated: 15 Feb 2023 00:45 by ADMIN
Created by: Shivam
Comments: 1
Category: ImageEditor
Type: Bug Report
0

When we are trying to crop the image when CanvasMode is set to "No", Instead of the position from where the image must be cropped, it is cropping the image from coordinates (0,0) i.e. from the top left corner.

 

Also, we are getting the issue in only some of the files. We are able to edit other files.

 

 

 

Completed
Last Updated: 05 May 2015 10:43 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: ImageEditor
Type: Bug Report
0
The new version allows shape resizing on the image editor. 

However this is not working in a stable fashion. Here is the list of steps to replicate

a. Draw a rectangle
b. Hold the central marker to drag the rectangle. it moves slightly and then nothing happens
c. Try holding any other marker to move the rectangle it does not work
Declined
Last Updated: 11 Jun 2021 10:45 by ADMIN
Add ability to RadImageEditor to show the progress  when saving the image to the server, displaying  back to the user how much time is left to save the newly changed image back to the server. 
Completed
Last Updated: 14 Sep 2021 09:48 by ADMIN
Release R1 2017
When the command dialogs from two ImageEditors on a page are opened consecutively, the second dock is rendered with wrong position. The issue most probably comes from the fact the second dock element (ToolsPanel) is appended to its parent ImageEditor, but not to the form.

Assuring that each dock is appended to the form element can be used as a temporary workaround of the issue:

        <telerik:RadImageEditor ID="RadImageEditor1" runat="server" Width="680" Height="450" OnClientDialogLoaded="ClientDialogLoaded"
            ImageUrl="waterpool.jpg">
        </telerik:RadImageEditor>
        <telerik:RadImageEditor ID="RadImageEditor2" runat="server" Width="680" Height="450" OnClientDialogLoaded="ClientDialogLoaded"
            ImageUrl="waterpool.jpg">
        </telerik:RadImageEditor>
        <script>
            function ClientDialogLoaded(imageEditor, args) {
                setTimeout(function () {
                    $telerik.$("#<%=form1.ClientID %>").append($get(imageEditor.get_id() + "_ToolsPanel"));
                }, 0);
            }
        </script>
Completed
Last Updated: 22 Apr 2015 12:57 by ADMIN
Adding ImageEditor inside a RadPanel breaks the RadPanels designer. The problematic behavior can be observed with the following configuration:

        <telerik:RadPanelBar ID="RadPanelBar1" Runat="server">
            <Items>
                <telerik:RadPanelItem runat="server" Text="Root RadPanelItem1">
                    <ContentTemplate>
                        <telerik:RadImageEditor ID="RadImageEditor1" runat="server" ImageUrl="~/Images/Jellyfish - Copy.jpg"></telerik:RadImageEditor>
                        <asp:Button runat="server" ID="dasd" />
                        <telerik:RadEditor ID="RadEditor1" runat="server"></telerik:RadEditor>
                    </ContentTemplate>
                </telerik:RadPanelItem>
            </Items>
        </telerik:RadPanelBar>
Completed
Last Updated: 14 Sep 2021 10:18 by ADMIN
Release Q3 2014
When the page is zoomed in iOS and Android devices, lines drawn are displaced downwards and to the right. Displacement increases with image zooming.

Configurations tested:
- iOS + Safari;
- Android + Chrome;
Completed
Last Updated: 06 Aug 2015 10:35 by DavidS
Declined
Last Updated: 09 Apr 2015 12:58 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: ImageEditor
Type: Feature Request
0
Images bigger than 10MB cannot be saved if the ImageEditor is used in enabled CanvasMode, even though the MaxJsonLenght property is configured. The ImageSaving event handler is also never called.


The only possible workaround for the moment is using the ImageEditor in disabled CanvasMode (CanvasMode="No")
Completed
Last Updated: 09 Jun 2015 10:02 by ADMIN
When the cropping box is resized through one of its left corners, the position of the cropping box is changed at all. The issue could be reproduced in all browsers. http://screencast.com/t/PDns6kPb
Declined
Last Updated: 01 Aug 2016 11:43 by ADMIN
Created by: Marbry
Comments: 1
Category: ImageEditor
Type: Feature Request
0
When placing text, clicking on the image should set the coordinates in the text dialog as long as the dialog is open.  Moving the location for the text block being placed to that location.

This is a problem when the default coordinate position is not currently visible on the image because the text block is not visible either.  So the user can't move it or even know that it's there.  And it's ridiculous to expect a user to enter a pixel coordinate value just to drop some text.

I would suggest that coordinates shouldn't be shown in the text dialog by default, and that the starting position should default to something like the middle of the visible area of the image.
Won't Fix
Last Updated: 10 Aug 2021 16:35 by ADMIN
Uploaded jpeg images cannot be edited in ImageEditor from the Image Manager dialog. The request for the file seems accurate, but the image is not rendered. 
Completed
Last Updated: 10 Aug 2016 12:52 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: ImageEditor
Type: Bug Report
0
The Classic RenderMode displays the Crop icon for custom tools, the Lightweight RenderMode displays a gear icon

Workaround:

			/*set background image*/
			.rieSomeCommandName
			{
				background-image: url(my-images/icon_16x16.png) !important;
			}
			/*add for lightweight render mode*/
			.rieSomeCommandName.rtbImage::before
			{
				/*set your own font and/or content if you want to use a font icon instead of a raster image*/
				content: "" !important;
			}

where the command name is taken from the tool by concatenating rie + <command name>:

			<telerik:RadImageEditor runat="server" ID="RadImageEditor1">
				<Tools>
					<telerik:ImageEditorToolGroup> 
						<telerik:ImageEditorTool Text="some text" CommandName="SomeCommandName"
							ImageUrl="my-images/icon_16x16.png"></telerik:ImageEditorTool>
					</telerik:ImageEditorToolGroup>
				</Tools>
			</telerik:RadImageEditor>

Completed
Last Updated: 01 Jun 2021 14:28 by ADMIN
Release R1 2017
Dialog tools panel is not positioned properly when there are more than one ImageEditor on the page. The dialog shown from the second ImageEditor is rendered below the control (on the bottom of the page), outside of the browser viewport.

Video:
http://screencast.com/t/lNcEd9ZWh
Completed
Last Updated: 08 Nov 2018 14:39 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: ImageEditor
Type: Feature Request
0
JS error is thrown when opening a tool in Lightweight and ShowAjaxLoadingPanel="true".

Error message:
Uncaught TypeError: Cannot set property 'id' of undefined
     at Telerik.Web.UI.RadImageEditor._showAjaxLoadingPanel


Steps to reproduce:
1. Run the following code
            <telerik:RadImageEditor ID="RadImageEditor1" ShowAjaxLoadingPanel="true" runat="server" RenderMode="Lightweight" ImageUrl="~/Images/Summdary.jpg">
            </telerik:RadImageEditor>

2. Open the "Crop" dialog

Result: A JS error is thrown.
Unplanned
Last Updated: 19 Apr 2019 05:50 by ADMIN
ImageEditor keeps in the undo stack a reference to the last written text, but not last inserted one. 

Video: https://www.screencast.com/t/z6z5gwA6

Steps to reproduce:

1. Open https://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx
2. Click the add text tool and insert "One"
3. Click the add text tool and insert "Two"
4. Click the add text tool, write "Three" and cancel/close the dialog
5. Click "Undo"
6. Click "Redo"
Result: The last written "Three" string is inserted instead of the expected "Two"

Unplanned
Last Updated: 30 Jul 2019 14:35 by ADMIN

Images with "*.jpeg" extension are saved as "*.jpg" in a different file even if the "Overwrite" option is checked. 

Steps to reproduce:

1. Open an image with "*.jpeg" extension in ImageEditor (e.g. test.JPEG)
2. Edit the image
3. Open the Save Dialog and choose "Save Image On Server" with checked "Overwrite if file exists?" option

Result: The edited image is saved as a new files with jpg extension (e.g. test.jpg)

Won't Fix
Last Updated: 08 Jun 2022 08:13 by ADMIN
Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx in IE9
2. Upload the attached image.
3. Try to resize the image

Result: The browser crashes
Completed
Last Updated: 24 Sep 2015 10:03 by ADMIN
When you set Lightweight render mode via web.config, the image editor appears broken.

You can use the following setup in web.config as a workaround for the time being. Note that all instances of the RadToolBar will be rendered in Classic mode.
 <appSettings>
      ....
      <add key="Telerik.Web.UI.RenderMode" value="Auto" />   
      <add key="Telerik.Web.UI.ToolBar.RenderMode" value="Classic" />
       ....
</appSettings>