-->

How to add Watermark Text to an image dynamically while uploading in ASP.NET.

Introduction

In this post, I explain how to add Watermark Text to an image dynamically while uploading in ASP.NET.

Steps :

Step-1 : Create New Project

Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.

Step-2: Add Web Page and Design for Upload Image with Watermark Text.

Go to Solution Explorer > Right Click on Project under solution explorer > Add > New item > Select Web Form using Master Page under web > Enter Name > > Select Master Page>Add.

HTML Code
  1. <h3>Upload Image with Watermark Text</h3>
  2. <table>
  3. <tr>
  4. <td>Select Image : </td>
  5. <td>
  6. <asp:FileUpload ID="FU1" runat="server" /></td>
  7.  
  8. </tr>
  9. <tr>
  10. <td>Watermark Text : </td>
  11. <td>
  12. <asp:TextBox ID="txtWatermarkText" runat="server"></asp:TextBox></td>
  13. </tr>
  14. <tr>
  15. <td></td>
  16. <td>
  17. <asp:Button ID="btnSave" runat="server" Text="Upload Image" OnClick="btnSave_Click" />
  18. </td>
  19. </tr>
  20. <tr>
  21. <td colspan="2" align="center">
  22. <asp:Label ID="lblMsg" runat="server" ForeColor="Red" />
  23. </td>
  24. </tr>
  25. </table>
  26. <asp:Image ID="Image1" runat="server" />

Step-3: Add a Folder for Save uploaded Images.

Go to Solution Explorer > Right Click on Project under solution explorer > Add > New Folder > Enter Name.

Step-4: Write code for Upload Image with Watermark Text.

Write below code into button click event for Upload Image with Watermark Text.

  1. protected void btnSave_Click(object sender, EventArgs e)
  2. {
  3. // Here We will upload image with watermark Text
  4. string fileName = Guid.NewGuid() + Path.GetExtension(FU1.PostedFile.FileName);
  5. Image upImage = Image.FromStream(FU1.PostedFile.InputStream);
  6. using (Graphics g = Graphics.FromImage(upImage))
  7. {
  8.  
  9. // For Transparent Watermark Text
  10. int opacity = 128; // range from 0 to 255
  11.  
  12. //SolidBrush brush = new SolidBrush(Color.Red);
  13. SolidBrush brush = new SolidBrush(Color.FromArgb(opacity, Color.Red));
  14. Font font = new Font("Arial",16);
  15. g.DrawString(txtWatermarkText.Text.Trim(), font, brush, new PointF(0, 0));
  16. upImage.Save(Path.Combine(Server.MapPath("~/UploadFiles"),fileName));
  17. Image1.ImageUrl = "~/UploadFiles" + "//" + fileName;
  18. }
  19. }

STEP-5: Run Application

Run Application and Get result in your browser.
Thank You

Related Post:


Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: