Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
RadImageEditor exposes many methods and properties on the client, giving you the ability to perform any action on the image programmatically. You could easily change the transparency, decrease the dimensions and save the changes of the image by calling the correct method.
For example if you want to mirror your image horizontally, you should use the RadImageEditor's flipImage(flipDirection) method by passing Telerik.Web.UI.ImageEditor.FlipDirection.Horizontal enumeration value. Now, if you want to download the image on your client machine, you should call the saveImageOnClient(fileName) method and specify the file name you want to use. Any changes that are made on the image will be applied on the server, and the browser will popup for download.
The full list of client-side methods and properties can be found on our online documentation. Check-out the "Related Resources" section for links.
<%@ Page Language="C#" AutoEventWireup="true" Inherits="Telerik.Web.Examples.ImageEditor.ClientSideAPI.DefaultCS"CodeFile="DefaultCS.aspx.cs" %> <!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" /> <script src="scripts.js" type="text/javascript"></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:RadImageEditor RenderMode="Lightweight" ID="RadImageEditor1" runat="server" ImageUrl="~/ImageEditor/images/logo.png" Height="410px" Width="790px" OnClientLoad="imageEditor_load" /> </div> <qsf:ConfiguratorPanel runat="server"> <Views> <qsf:View Title="Edit Image" runat="server"> <qsf:ConfiguratorColumn runat="server" Title="Change Width x Height" Size="Narrow"> <qsf:RadioButtonList ID="rbResize" runat="server" AutoPostBack="false" onclick="Resize();"> <asp:ListItem Text="500 x 236px" Value="500,236" Selected="True"></asp:ListItem> <asp:ListItem Text="500 x 500px" Value="500,500"></asp:ListItem> <asp:ListItem Text="640 x 480px" Value="640,480"></asp:ListItem> </qsf:RadioButtonList> </qsf:ConfiguratorColumn> <qsf:ConfiguratorColumn runat="server" Title="Change Zoom Level" Size="Narrow"> <qsf:RadioButtonList ID="rbZoom" runat="server" AutoPostBack="false" onclick="Zoom();"> <asp:ListItem Text="50%"></asp:ListItem> <asp:ListItem Text="100%" Selected="True"></asp:ListItem> <asp:ListItem Text="200%"></asp:ListItem> </qsf:RadioButtonList> </qsf:ConfiguratorColumn> <qsf:ConfiguratorColumn runat="server" Title="Edit Image" Size="Medium"> <ul class="fb-group"> <li> <qsf:Button ID="flipVerticalBtn" Text="Flip Vertically" OnClientClicked="FlipVertical" AutoPostBack="false" runat="server" /> <qsf:Button ID="flipHorizontalBtn" Text="Flip Horizontally" OnClientClicked="FlipHorizontally" AutoPostBack="false" runat="server" /> </li> <li> <qsf:Button ID="rotateLeftBtn" Text="Rotate Left" OnClientClicked="RotateLeft" AutoPostBack="false" runat="server" /> <qsf:Button ID="rotateRightBtn" Text="Rotate Right" OnClientClicked="RotateRight" AutoPostBack="false" runat="server" /> </li> </ul> </qsf:ConfiguratorColumn> </qsf:View> <qsf:View Title="Download Image" runat="server"> <qsf:ConfiguratorColumn Title="Choose image name" runat="server"> <qsf:TextBox id="downloadBox" ClientEvents-OnLoad="downloadBox_load" runat="server" /> <qsf:Button ID="downloadBtn" Text="Download Image" OnClientClicked="DownLoadImage" AutoPostBack="false" runat="server" /> </qsf:ConfiguratorColumn> </qsf:View> </Views> </qsf:ConfiguratorPanel> <script type="text/javascript"> //<![CDATA[ serverIDs({ zoomListID: '<%=rbZoom.ClientID %>', resizeListID: '<%=rbResize.ClientID %>' }); //]]> </script> </form> </body> </html>