Capturing screenshots,Image of a webpage in asp.net using C#

How to capture web page screenshot in asp.net using c#
This article presents a Asp.net using C# routine for capturing an entire web page as an image. 


 using System.Drawing;
 using System.Drawing.Imaging;
 using System.Windows.Forms; ////Include for taking ScreenDatails

 protected void btn_SaveScreensShot_Click(object sender, EventArgs e)
    {
         Bitmap bitmap = new Bitmap
        (Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
 
        Graphics graphics = Graphics.FromImage(bitmap as System.Drawing.Image);  
        graphics.CopyFromScreen(25, 25, 25, 25, bitmap.Size);
        bitmap.Save(Server.MapPath(@"File\myscreenshot.bmp"), ImageFormat.Bmp);   

     }



First you have to add reference of the dll.
  1. Right click the project name
  2. Add reference -> .net tab and then choose system.windows.forms namespace then press ok button.
  3. In .aspx code behind file you have to import the System.Windows.Forms namespace and that’s it.
By customizing parameters used in CopyFromScreen() function, you can figure out how to capture the small portion of the screen, if required. Create a folder and give folder path in c# code just like above i have given. You can customize the code as well and give the dynamic name of bitmap file every time it is generated.



Popular Posts