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.

 

 

 

Unplanned
Last Updated: 31 Aug 2022 09:37 by ADMIN

Using attached Visual Studio project....

Steps to re-create:

1) Draw line on image with pencil

2) Clear all changes

3) Draw another line with pencil.  Upon releasing mouse button RadDiagram loses image and just shows checkerboard.

Demo project attached.

Happens in Chrome, but not in Firefox.

Seems to occur regardless of Telerik version.

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: 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: 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: 13 Aug 2021 11:36 by ADMIN
Release Q2 2015
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 2021 13:10 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: ImageEditor
Type: Bug Report
0
In the latest release (Q1 2016) it is possible to resize and drag the crop box in ImageEditor to negative bounds in IE.

Video: http://screencast.com/t/b1SyzOWBGb
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: 01 Jun 2021 13:20 by ADMIN
Release Q3 2015
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>   
Unplanned
Last Updated: 03 Sep 2019 16:56 by ADMIN

The Pencil dialog is not positioned properly when the image is zoomed or/and scrolled.

Steps to reproduce:

1. Open https://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx
2. Zoom the image to 200%
3. Scroll the image to the right
4. Open the pencil dialog

Result - the dialog appears outside the visible area
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)

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"

Completed
Last Updated: 16 Apr 2018 13:05 by ADMIN
JS error is thrown when a Responce.Redirect() is made after editing an image in RadImageEditor.



Steps to reproduce:

1. Run the following code:

        <telerik:RadImageEditor ID="ImageEditorControl" runat="server" RenderMode="Classic"
            Width="790px" Height="430px" ImageUrl="~/Images/bhp-500l.jpg">
        </telerik:RadImageEditor>
        <asp:Button ID="Button3" runat="server" Text="Redirec" OnClick="Button3_Click" />

    Protected Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
        Response.Redirect("https://www.google.bg/")
    End Sub


2. Open the Pencil tool and draw something on the image

3. Click the Redirect button

Result: A JavaScript error is thrown.
Completed
Last Updated: 28 Mar 2017 15:07 by ADMIN
Completed
Last Updated: 19 Jan 2017 08:03 by ADMIN
A large uploaded image is not saved properly after cropping in disabled CanvasMode. Instead of saving the cropped part of the image, the control is saving the original image resized to fit the cropped part size.

The issue is reproducible both by using the Save dialog (Save image on server) or the saveImageOnServer() method.

Steps to reproduce:

1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/imageupload/defaultcs.aspx in IE8
2. Upload the attached image
3. Crop a part of it
4. Save the image on server

Result: The original image is resized with the crop-box dimensions.


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: 18 Jul 2016 08:57 by ADMIN
The mouse position coordinates of the ImageEditor (can be seen in its bottom Statusbar) are not updated properly after zooming (Crtl+Mouse scroll over the image). Moving the mouse pointer outside the ImageEditor's viewport and bringing it back forces the control to recalculate the mouse position properly.

Video: http://screencast.com/t/BB7UzCwj0zz

Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx
2. Choose a specific point of the image and check its position (the x and y coordinates shown in the ImageEditor's status bar)
3. Zoom-in the image by pressing Ctrl and Mouse scroll
4. Navigate to the same point

Actual: The x and y coordinates are changed
Expected: The x and y coordinates of the point are the same as before the zooming
Completed
Last Updated: 04 Jul 2016 11:15 by ADMIN
Filtering operations are registered twice in the undo stack of the ImageEditor.

1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/toolbarmodes/defaultcs.aspx

2. Click on the More arrow on the right most on the Toolbar

3. Click to expand the Brightness/Contrast split button and choose Greyscale

Result: The Greyscale command is added twice in the undo stack of the control
1 2