All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
RadImageEditor is powerful and flexible graphics editing component that enables the users to modify their images directly in the browser, without the need of installing any third party plugins. The actions on the image are performed on the client or, through a light callback, on the server, giving the possibility to perform the editing quickly and see the changes on the fly. The control is fully customizable, intuitive to work with and provides many features.
RadImageEditor and 120+ other controls are part of UI for ASP.NET AJAX, a comprehensive toolset taking care of the common functionality of your application, while leaving you with more time to work on its business logic.
More about RadImageEditor for ASP.NET AJAX
<%@ Page Language="vb" AutoEventWireup="true" CodeFile="DefaultVB.aspx.vb" Inherits="Telerik.Web.Examples.ImageEditor.Overview.DefaultVB" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> <link href="../../common/styles.css" rel="stylesheet" /> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <link href="styles.css" rel="stylesheet" /> <script src="scripts.js" type="text/jscript"></script> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <div class="demo-container size-wide"> <telerik:RadAjaxPanel runat="server"> <telerik:RadImageEditor RenderMode="Lightweight" ID="RadImageEditor1" runat="server" ImageUrl="~/ImageEditor/images/hay.jpg" OnImageLoading="RadImageEditor1_ImageLoading" Width="790px" Height="430px"> </telerik:RadImageEditor> </telerik:RadAjaxPanel> </div> <qsf:ConfiguratorPanel runat="server"> <Views> <qsf:View Title="Choose Image" runat="server"> <ul class="fb-group"> <li> <telerik:RadAsyncUpload RenderMode="Lightweight" ID="RadUpload1" runat="server" OnFileUploaded="AsyncUpload1_FileUploaded" MaxFileSize="524288" OnClientValidationFailed="validationFailed" AllowedFileExtensions="jpg,png,gif,bmp" AutoAddFileInputs="false" OnClientFileUploadRemoved="fileRemoved"> </telerik:RadAsyncUpload> <asp:Label ID="Label4" Text="File Size limit 500KB, (jpg, bmp, png, gif)" runat="server" /> </li> <li> <qsf:Button ID="Button1" Text="Upload Image" runat="server" CausesValidation="False"></qsf:Button><br /> <span id="asyncUpload" style='color: Red; line-height: 15px'></span> </li> </ul> </qsf:View> <qsf:View Title="Settings"> <qsf:ConfiguratorColumn runat="server" Title="Choose tools file" Size="Narrow"> <asp:Label ID="Label2" runat="server" AssociatedControlID="RadiosTools" Font-Bold="true"></asp:Label> <asp:RadioButtonList ID="RadiosTools" runat="server" AutoPostBack="true" OnSelectedIndexChanged="RadiosTools_SelectedIndexChanged"> <asp:ListItem Text="Default set of tools" Selected="True"></asp:ListItem> <asp:ListItem Text="Dialogs tools"></asp:ListItem> <asp:ListItem Text="Basic tools"></asp:ListItem> <asp:ListItem Text="Canvas tools"></asp:ListItem> </asp:RadioButtonList> </qsf:ConfiguratorColumn> <qsf:ConfiguratorColumn runat="server" Title="Set StatusBarMode" Size="Narrow"> <asp:Label ID="Label1" runat="server" AssociatedControlID="RadiosStatusBar" Font-Bold="true"></asp:Label> <asp:RadioButtonList ID="RadiosStatusBar" runat="server" AutoPostBack="true" OnSelectedIndexChanged="RadiosStatusBar_SelectedIndexChanged"> <asp:ListItem Text="Bottom" Selected="True"></asp:ListItem> <asp:ListItem Text="Top"></asp:ListItem> <asp:ListItem Text="Hidden"></asp:ListItem> </asp:RadioButtonList> </qsf:ConfiguratorColumn> <qsf:ConfiguratorColumn runat="server" Title="Enable/Disable resizing" Size="Medium"> <div class="divList"> <asp:Label ID="Label3" runat="server" AssociatedControlID="RadiosEnableResize" Font-Bold="true"></asp:Label> <asp:RadioButtonList ID="RadiosEnableResize" runat="server" AutoPostBack="true" OnSelectedIndexChanged="RadiosEnableResize_SelectedIndexChanged"> <asp:ListItem Text="Enable" Selected="True"></asp:ListItem> <asp:ListItem Text="Disable"></asp:ListItem> </asp:RadioButtonList> </div> </qsf:ConfiguratorColumn> </qsf:View> </Views> </qsf:ConfiguratorPanel> </form> </body> </html>