screenshot

Selenium RC sending blank screenshots through (winxp/winserver)

Hello everyone. I'm trying to set up my virtual (xen) win xp instances, a dedicated windows server, and a dedicated windows xp desktop pc for web app UI testing, using selenium-rc and the selenium PHP API from pear (the php script running the tests sits on its app server, on the same local network as the remote-controlled windowses). E...

How to kill headless X server started via Python?

I want to get screenshots of a webpage in Python. For this I am using http://github.com/AdamN/python-webkit2png/ . newArgs = ["xvfb-run", "--server-args=-screen 0, 640x480x24", sys.argv[0]] for i in range(1, len(sys.argv)): if sys.argv[i] not in ["-x", "--xvfb"]: newArgs.append(sys.argv[i]) logging.debug(...

Taking screenshot of a specific window - C++ / Qt

In Qt, how do I take a screenshot of a specific window (i.e. suppose I had Notepad up and I wanted to take a screenshot of the window titled "Untitled - Notepad")? In their screenshot example code, they show how to take a screenshot of the entire desktop: originalPixmap = QPixmap::grabWindow(QApplication::desktop()->winId()); How woul...

Take screen shot in XNA

How can I take a screen shot of the screen in XNA? Is it possible without System.Drawing.Graphics.CopyFromScreen or Win32API? If it's not possible, Is there any way to draw a System.Drawing.Bitmap to the game? I want that it'll take a screen screenshot, then load the game in full screen mode, and then print the screenshot. Thanks. ...

Desktop screenshot in WPF

How can I take a screenshot of the desktop in WPF? Preferably with the mouse cursor showing. ...

Easy way to upload a screenshot (from clipboard) through a browser form

Hi, i am pretty sure, that i've seen such a feature on a website somewhere in the web. i want to give the user a form, where he can input some data and attach the current clipboard content (very likely a screenshot) to the form and then submit it as an image file. after all, i don't want the user to go through all the hassle: take a ...

Screenshot of window

I'm trying to take screenshots of all open windows, also the minimized ones. Currently I'm using this code: http://www.developerfusion.com/code/4630/capture-a-screen-shot/ But it doesn't work for minimized windows and the areas where there is a Glass effect since Vista like the explorer title bar are black. Can anyone help me out? My o...

Capture the preview of a UIImagePickerController

This has been asked many times. But most answers are not applicable to the latest OS (3.0+) or they are "Apple will reject it". What I need is to programmatically grab the image displayed in the preview of the UIImagePickerController without having the user take a photo and use the image - what I actually need is to get a screenshot of ...

ASP.NET/ActiveX/Silverlight Screen Capture

I need a way to capture the screen within a web application in any way possible. Is there such a way without installing other tools like SnagIt? Can I use Win32 DllImports within an ActiveX component and do it that way? Thanks in advance! ...

Silverlight 4 Screen Capture

I'm writing a timesheet helper utility in Silverlight 4. This will be a trusted out of browser application that will periodically ask the user (with a SL4 Notification Window) what they have been working on. What I'd like to do is have it capture images of their desktop (or better yet, active window) from time to time in order to remind ...

How to screen capture screenshots or movies on the Linux framebuffer

How can the linux frame buffer, on Cell Linux, be captured to obtain either screen shots or movies? Is there a tool to do this for a running program, or must the program writing to, and presumably controlling, the frame buffer also handle capture and recording? ...

Capturing a screenshot of an embedded video using C#

I am working on a video search engine. Similar to google video. I have noticed that google video has a screen shot from all the videos that they index. I have tried many ways to achieve this with no success. One way that i was suggested is to create an swf that will load the required swf and take a screen shot. however this is not a good...

Screenshot tool for BlackBerry?

I am working on a web development project that I want to make sure works well on the BlackBerry browser. As part of both testing and documentation, I want to be able to take screenshots of my application and was wondering where to start. I see there are a couple of pay applications on BlackBerry App World when I search for screenshot, ...

Capturing a Full-Length Webpage Screenshot (with a plugin/addon) in multiple browsers?

I am trying to capture a screenshot of two versions of a website (one that's standards complaint and one that is not). I would use broswershots.org, but only one of the websites has a public url. Now I've already got full-length screenshots for IE and FF, but what can I do to get a full-length screenshot in Opera, Chrome and Safari? ...

PHP: How to capture browser window screen with php?

Hi, First of all, i am not sure, if it is possible to capture browser window screen with php, then how to do it? If it is possible, the best will be to capture just the website content excluding browser parts such as menubar, toolbar, statusbar, etc. Thanks ...

flex 3 screenshot of the scene

i want to snapshot of the flex scene and save it as a image. It likes printscreen button and paste it to paint and save there will a button save it to desktop and when pressed it, flex will save the screenshot of scene to the desktop, i searched on the net but couldn't find a working code ...

Take screenshot of DirectX full-screen application

This boggles me. DirectX bypasses everything and talks directly to the device driver, thus GDI and other usual methods won't work - unless Aero is disabled (or unavailable), all that appears is a black rectangle at the top left of the screen. I have tried what other have suggested on several forums, using DirectX to get the back buffer ...

Programmatically get screenshot of page

I'm writing a specialized crawler and parser for internal use and I require the ability to take a screenshot of a web page in order to check what colours are being used throughout. The program will take in around ten web addresses and will save them as a bitmap image, from there I plan to use LockBits in order to create a list of the fiv...

Javascript to take a screenshot of a website without using ActiveX

I have a JS app that an user interacts with. I need to save the appearance of the interface at the current time, crop out the part that I need (or only shot the part that I need by specifying the div), and send it back to the server. Clearly any external services would not be able to do this, I need a javascript (or flash) script that c...

Is there anything out there that can take screenshots of website content and crop out the layout?

Other ideas are also welcome. I am trying to take an excel file, using python to generate an xml for a javascript html webpage that will essentially display a gallery (or some sort of directory structure). The excel file would be pretty massive, but let us assume time isn't so crucial. So far I can convert the tab delimited version of ...