Completed
Last Updated: 17 Sep 2015 14:21 by ADMIN
Some formats that can be considered are JPEG 2000, CALS, GIF, IOCA, JBIG, JBIG2, TGA, TIFF, EXIF, ICO.
Completed
Last Updated: 08 Nov 2016 14:16 by LM IT
ADMIN
Created by: Telerik Admin
Comments: 2
Category: ImageEditor
Type: Feature Request
12
If you have a large image inside RadImageEditor or have zoomed a relatively big image, it would be great to have the ability to set panning on, so that the user can move around more easily.


Available in R1 2017 Release
Completed
Last Updated: 11 Aug 2016 14:05 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 4
Category: ImageEditor
Type: Feature Request
11
Implement a drawing tool that will enable drawing over the picture using the mouse.

This feature will be available in our official release Q1 2015.
Unplanned
Last Updated: 22 Feb 2017 08:07 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ImageEditor
Type: Feature Request
8
Add more built-in brushes and pencils to the DrawTool. Currently, this can be achieved by customization of DrawTool.
Unplanned
Last Updated: 08 Mar 2017 13:10 by ADMIN
ADMIN
Created by: Alex
Comments: 0
Category: ImageEditor
Type: Feature Request
8
Add properties for setting minimal and maximal scale factor in RadImageEditor. 
Completed
Last Updated: 02 Aug 2018 11:05 by ADMIN
ADMIN
Created by: Todor
Comments: 2
Category: ImageEditor
Type: Feature Request
8
Add an option to zoom towards the mouse cursor.
Completed
Last Updated: 12 Sep 2018 08:42 by ADMIN
Created by: Iva
Comments: 2
Category: ImageEditor
Type: Feature Request
7
Add tool for creating selection, and integrate the other tools to work only in the selected region, if one is present.
Unplanned
Last Updated: 15 Sep 2018 08:07 by Mi
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ImageEditor
Type: Feature Request
6
Sometimes it is better not to integrate changes directly into a bitmap. Layers will enable grouping the effects of several tools and applying/reverting the changes at a later time.
Alphachannel support in Silverlight is already available. Saving may require a proprietary file format, Paint.NET's .pdn or tiff export/import.
Unplanned
Last Updated: 27 Jun 2018 15:28 by Dinko
ADMIN
Created by: Tanya
Comments: 4
Category: ImageEditor
Type: Feature Request
6

			
Unplanned
Last Updated: 07 Mar 2019 12:39 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ImageEditor
Type: Feature Request
5

Currently, on each change of the image, a new instance of the image is stored in the undo/redo stack. This means that the memory grows very fast. Especially, in a scenario with big images.

Create a smarter undo/redo mechanisms that saves only the applied change in the image.

Unplanned
Last Updated: 15 May 2017 06:42 by ADMIN
Introduce support to rotate the image for any degrees. Currently it can rotate the image on 90, 180 and 20 degrees.
Unplanned
Last Updated: 15 May 2017 07:12 by Saykor
Expose property (e.g. InitialPosition) that will set X and Y start in CropCommandContext from CropTool

To achieve this with the current API this you can get the CropAdorner control from the visual tree and set its CropRect property.

private void imageEditor_Loaded(object sender, RoutedEventArgs e)
{
ImageEditorRoutedCommands.ExecuteTool.Execute(new CropTool(), this.imageEditor);
var cropAdorner = this.imageEditor.FindChildByType<CropAdorner>();
cropAdorner.CropRect = new Rect(10, 10, 100, 100);
}
Unplanned
Last Updated: 09 Apr 2021 11:34 by Richard
The user should create a custom tool if they need to change the default settings of the DrawTextTool. It would be nice to provide an easier way for achieving this.
Unplanned
Last Updated: 15 May 2017 06:47 by ADMIN
Unplanned
Last Updated: 12 Oct 2020 05:58 by ADMIN
Extend the list of predefined shapes for the ShapeTool with arrows.
Unplanned
Last Updated: 11 May 2022 09:06 by Stenly
Created by: Stenly
Comments: 0
Category: ImageEditor
Type: Feature Request
3
Currently, the RadImageEditor control does not provide support for loading, modifying, and saving EMF and WMF files.

We could add support for these file formats.
Unplanned
Last Updated: 15 May 2017 06:37 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: ImageEditor
Type: Feature Request
2
 When user is dragging the crop rectangle, the cursor should be a hand (for example).
Unplanned
Last Updated: 15 May 2017 06:45 by ADMIN
Enable the users to set default values for Shape tool properties (fill, stroke, thickness, border color, is ratio locked).
Unplanned
Last Updated: 15 May 2017 06:52 by ADMIN
Introduce a special file format for RadImageEditor which enables to edit the changes made on an image. 

For example: When the user opens the image at some point in the time, he/she should be able to edit the made changes on the image - e.g. to remove the drawn text or shapes. 
Unplanned
Last Updated: 08 Feb 2021 10:11 by ADMIN

Currently there isn't a way to determine if an image in the Image Editor has any changes.

There is a HistoryOnCurrentImageChanged() event which goes some way to providing the functionality, but this doesn't fire until a tool is committed.

For example, if you load an image, and select the Hue tool, and then drag the hue slider and change the image, this won't trigger the HistoryOnCurrentImageChanged() event until the user commits the tool e.g. clicks another tool or clicks off the image...

What would be perfect would be to have a HasChanges() property on the image editor that gets set to true when any aspect of the image is edited e.g. a tool slider is moved and the changes are not yet committed.

This would allow things like being able to have the the Save button disabled until the image is edited. Or being able to warn a user they are about to lose their changes if they have edited (say) the hue but have not yet committed the tool.

See also - https://www.telerik.com/forums/detecting-change 

Thanks

1 2