Unplanned
Last Updated: 07 Feb 2017 10:19 by ADMIN
When the ShapeTool is active and you execute another tool (lets say DrawTool) the UI becomes partially unresponsive. This includes the tools section and the tool settings panel.

The issue is reproducible in a NoXaml scenario (using implicit styles) and only if the Telerik.Windowls.Controls.ImageEditor.xaml ResourceDictionary is merged in the resources of the view where the control is defined (example: MainWindow.Resources).

To work this around define the ResourceDictionary in App.xaml.
Completed
Last Updated: 02 Sep 2022 13:13 by ADMIN
Release LIB 2022.2.905 (05 September 2022)
ADMIN
Created by: Mihail
Comments: 0
Category: ImageEditor
Type: Bug Report
0
Drawing with the draw tool over the image with big size (e.g. 3000 x 2500) result in loss of quality.

Workaround: In the DrawCommand use the following method to create a BitmapSource which should be used for creating a RadBitmapImage.

public RadBitmap Execute(RadBitmap source, object context)
{
   ...
   ...
   ...
   BitmapSource bitmapSource = GetBitmapSource(source.Width, source.Height, canvas);
   return new RadBitmap(bitmapSource);
}
private BitmapSource GetBitmapSource(int width, int height, Canvas surface)
{
    Size size = new Size(width, height);

    surface.Measure(size);
    surface.Arrange(new Rect(size));

    // Create a render bitmap and push the surface to it
    RenderTargetBitmap renderBitmap =
        new RenderTargetBitmap(
        (int) size.Width,
        (int) size.Height,
        96d,
        96d,
        PixelFormats.Pbgra32);
    renderBitmap.Render(surface);

    return renderBitmap;
}
Completed
Last Updated: 22 May 2019 05:02 by ADMIN
Release LIB 2019.2.527 (05/27/2019)
When Depth property is set it is expected that the undo stack would not keep more items than the depth value. However, this behaviour is not working in ImageHistory class and could lead to OutOfMemoryException when the stack gets full of ImageHistoryItem instances.

Steps to reproduce:
1. Open ImageEditor and load some image.
2. Set ImageEditor.History.Depth = 1.
3. Make a few rotations.
Expected: When making Undo you should be able to undo only the last rotation.
Actual: You can Undo all the rotations meaning that Depth property is not respected.
Completed
Last Updated: 03 Jun 2016 23:08 by ADMIN
In Shape and DrawText tools there are strings which are not changed if the current culture is changed during the lifetime of an application.
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: 27 Jun 2018 15:28 by Dinko
ADMIN
Created by: Tanya
Comments: 4
Category: ImageEditor
Type: Feature Request
6

			
Unplanned
Last Updated: 16 Jan 2017 09:39 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: ImageEditor
Type: Bug Report
1
When RadBitmap objects which sources are big images (e.g. 2000x1500) are rotate, image quality loss is observed. Internally, RadBitmap.Rotate method is used.
Completed
Last Updated: 30 Nov 2015 11:36 by ADMIN
ADMIN
Created by: Todor
Comments: 1
Category: ImageEditor
Type: Bug Report
1

			
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: 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).
Completed
Last Updated: 09 Jan 2017 14:24 by ADMIN
When ScaleFactor property is set to 0, zooming in/out with the mouse wheel is not working. 

Available in R1 2017 Release
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: 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.
Won't Fix
Last Updated: 04 Apr 2024 12:23 by ADMIN
Multiple operations applied on a big RadBitmap can cause OutOfMemoryException because of used and not disposed unmanaged resources in a WriteableBitmap object.

Steps to reproduce:
- Execute multiple times the Rotate tool
Observe: The memory goes up and retains such.
Expected: The unmanaged memory is cleared.

Findings: the memory leak is related to the WPF class WriteableBitmap which is internally used by the RadBitmap. Attached is a sample project illustrating the problem using only WPF classes.
Note: At this point, we are not aware of a possible fix.
Unplanned
Last Updated: 16 Jan 2017 08:25 by ADMIN
When a RadBitmap is rotated to degrees for which sine and cosine are not integers (every angle which is not 90, 180, 270 or 360) applies wrongly calculated transformations and the bitmap' size is no longer correct.

For example, rotating a bitmap to -30 and then to 30 degrees changes its size.
Completed
Last Updated: 20 Jan 2020 12:40 by ADMIN
Release LIB 2020.1.120
ADMIN
Created by: Todor
Comments: 1
Category: ImageEditor
Type: Bug Report
2
If an image with dpi different than 96 (for example 300dpi) is imported and then some operations are made on it, the exported image is with 96dpi.
Completed
Last Updated: 19 Jun 2015 10:02 by ADMIN
ADMIN
Created by: Anna
Comments: 0
Category: ImageEditor
Type: Feature Request
0
The feature will be available in our official release 2015 Q2 .
Completed
Last Updated: 12 Feb 2015 10:42 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: ImageEditor
Type: Bug Report
2
"Transparent" and "Automatic" strings in all ColorPickers in ImageEditor are hard coded.

The fix will be available in our official release 2015 Q1.
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).