vote up 4 vote down star
3

I want to be able to create a screen shot of a given Web site, but the Web site may be larger than can be viewed on the screen. Is there a way I can do this?

Goal is to do this with .NET in C# in a WinForms application.

flag

79% accept rate
There is someone that wants to do this as a server-side script, but I need a WinForms application. – CJCraft.com Apr 17 at 21:08

6 Answers

vote up 3 vote down

There are a few tools.

The thing is, you need to render it in some given program, and take a snapshot of it. I don't know about .NET but here are some tools to look at.

link|flag
vote up 0 vote down

Doing at as a screen shot is likely to get ugly. It's easy enough to capture the entire content of the page with wget, but the image means capturing the rendering.

Here's some tools that purport to do it.

link|flag
vote up 0 vote down

I just found out about the website browsershots.org which generates screenshots for a whole bunch of different browsers. To a certain degree you can even specify the resolution.

link|flag
vote up 1 vote down

I wrote a program in VB.NET that did what you specified, except for the screen size issue.

I embedded a web control(look at the very bottom of all controls) onto my form, and tweaked it's settings(Hide scroll). I used a timer to wait on dynamic content, and then I used "copyFromScreen" to get the image.

My program had dynamic dimensions(settable via command line). I found that if I made my program larger than the screen, the image would just return black pixels for the off screen area. I did not research farther since my job was complete at that time.

Hope that gives you a good start. Sorry for any wrong wordings. I log onto windows to develop only once every couple of months.

link|flag
vote up 0 vote down

This is the code for creating screenshot programatically...

using System.Drawing.Imaging;

int screenWidth = Screen.GetBounds(new Point(0, 0)).Width; int screenHeight = Screen.GetBounds(new Point(0, 0)).Height; Bitmap bmpScreenShot = new Bitmap(screenWidth, screenHeight); Graphics gfx = Graphics.FromImage((Image)bmpScreenShot); gfx.CopyFromScreen(0, 0, 0, 0, new Size(screenWidth, screenHeight)); bmpScreenShot.Save("test.jpg", ImageFormat.Jpeg);

link|flag
vote up 0 vote down

You can render it on WebBrowser control and then take snapshot if page size bigger than screen size you have to scroll control take one or more snapshots and then merge all pictures :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.