Zooming in on a large image loaded in the ImageEditor results in poor performance.
A sample application is available in ticket 1595292. Run the application and zoom in on the top ImageEditor.
Zooming in takes too much time.
Zooming should be faster.
Issue is possibly related to the check on whether an image is exportable - link. A possible workaround is to bypass the check:
kendo.ui.ImageEditor.fn._toggleTools = function () {
var that = this,
canRedo = that.redoStack.length > 0,
canUndo = that.undoStack.length > 0,
hasImage = !!that._image;
that.toolbar.toggleTools({
redo: canRedo,
undo: canUndo,
enable: hasImage,
canExport: true, // Avoid checking if image can be exported. Causes performance issues.
});
};