Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Take ScreenShot of .net control within application and attach to Outlook Email [duplicate]

Does anyone know how to take a screenshot using C# and limit it to take a picture of a specific container/portion of an application. I do not want the whole screen or whole window of the application.

My Panel is simply called: panel1 User would click a "button" and take screenshot of panel1 and attach to email.

I would like to take a screen shot of that section only and then save locally to the C:\ Drive and/or attach or embed into an outlook email.

I read other various things on the internet but most of them had to deal with creating complex changes in take a screenshot of a web browser control which I am not looking for.

like image 863
brink668 Avatar asked Apr 14 '13 15:04

brink668


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.


2 Answers

If you just want to the Panel's screenshot, you can use the built-in DrawToBitmap method.

Bitmap bmp = new Bitmap(myPanel.Width, myPanel.Height);
myPanel.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height));
bmp.Save(@"C:\MyPanelImage.bmp");

Just note that some controls may not work with this functionality such as the WebBrowser and RichTextBox controls but it should work for most other controls (textbox, labels etc..)

like image 136
keyboardP Avatar answered Oct 06 '22 00:10

keyboardP


I do this using something like

public static void TakeCroppedScreenShot(
    string fileName, int x, int y, int width, int height, ImageFormat format)
{
    Rectangle r = new Rectangle(x, y, width, height);
    Bitmap bmp = new Bitmap(r.Width, r.Height, PixelFormat.Format32bppArgb);
    Graphics g = Graphics.FromImage(bmp);
    g.CopyFromScreen(r.Left, r.Top, 0, 0, bmp.Size, CopyPixelOperation.SourceCopy);
    bmp.Save(fileName, format);
}

I hope this helps

like image 38
MoonKnight Avatar answered Oct 05 '22 23:10

MoonKnight