Does this control support custom toolbar, as seen in RadEditor?
10 Answers, 1 is accepted
Thank you for your nice words. We hope that you will enjoy working with the new Image Editor.
Could you please explain in more details wheat do you mean by image annotation feature? Have you seen this feature offered by another Image editor control?
Yes, it is possible to add custom toolbars and custom buttons to the toolbar. Here is an example which demonstrates how to implement a custom Save button:
<telerik:RadImageEditor ID=
"RadImageEditor1"
runat=
"server"
ImageUrl=
"~/ImageEditor/images/hay.jpg"
Width=
"720px"
Height=
"430px"
>
<tools>
<telerik:ImageEditorToolGroup>
<telerik:ImageEditorTool CommandName=
"SaveImage"
ImageUrl=
"Save.png"
/>
<telerik:ImageEditorTool CommandName=
"Rotate"
/>
</telerik:ImageEditorToolGroup>
</tools>
</telerik:RadImageEditor>
<script type=
"text/javascript"
>
Telerik.Web.UI.ImageEditor.CommandList[
"SaveImage"
] =
function
(imageEditor, commandName, args) {
imageEditor.saveImageOnServer(
""
,
true
);
//saves the image on the server - it either overwrites the file or keeps both files
};
</script>
</telerik:RadAjaxPanel>
All the best,
Rumen
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
Just personally, though, I'd like to see you make this project a Photoshop for the web the way you made your WYSIWYG editor Word for the web. ;) The web could really use a tool that makes creating attractive, composite graphics easier. Just so many use cases I can see this in...
If possible, expose the control for user to access the image and perform custom actions. This way the control is flexible enough to allow user extend its functionality.
Thank you very much for your feature requests for RadImageEditor. We will have logged them in our records and we will consider their implementation for future versions of the control.
Best regards,
Rumen
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
- Highlight(with settable transparency, color size etc) *critical feature!!
- Image overlay(IE take a jpg and overlay as an annotation)
- Hyperlink annotation
This control is a FANTASIC addition, thanks bunches guys!!!
Thank you for your feature requests for RadImageEditor.
- Highlight(with settable transparency, color size etc) *critical feature!! - Such functionality is not planned for the next Q3 2011 release. The ability to insert geometrical objects in an image is logged in our ToDo list but our ToDo list is already set and we will be unable to implement it for Q3 2011.
- Image overlay(IE take a jpg and overlay as an annotation) - We plan to implement a similar feature (insert image in image) for Q3 2011.
- Hyperlink annotation - Could you please provide more information about this feature? If possible send a screenshot of the required feature.
Greetings,
Rumen
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
While in zoom in, I need to use my mouse to move (pan) from one location to another.... I have to use scroll bar at this time. How can I do that?
Thanks
I logged the requested move / pan feature and we will try to implement it for the Q3 2011 release. Here is a link to the PITS item: http://www.telerik.com/support/pits.aspx#/public/aspnet-ajax/7257
Best regards,
Rumen
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Could not find the command SaveImage. Please update your command list.
The JavaScript code of the custom command should be placed under the RadImageEditor declaration. You can examine the code of the following demo for more information: Custom Server Commands.
All the best,
Rumen
the Telerik team