screenshot

How to take emulator screen shots using Eclipse?

I need to take screen shots of an android application running on an emulator in Eclipse Galileo. Is there a built in feature for this or do I have to download a plugin of some sorts? ...

Is there a way to automatically take a screenshot of a website through a URL?

I am trying to find a PHP script (or a script in a different language) that after passing a URL, it takes a screenshot of the website for that URL. So for example if I pass stackoverflow.com, it should take a screen shot of the website (in this case the homepage), keep it on the server, and provide a link to that pic. Is there an easy w...

Notification of or detecting screenshot being taken?

Is there a notification or other mechanism of being informed that the user is taking a screenshot with the home/power buttons? I've seen threads about wanting to disable the taking of screenshots, but that's not what I'm looking to do. I have a photographer client who's concerned that his works will be copied by means of users taking s...

Client side screenshot generation with javascript

Hi, i'm building an application that requires the generation of a screenshot of a page via javascript. I've found this question: http://stackoverflow.com/questions/683718/generating-browser-side-web-page-thumbnails The question is quite old, so i want to ask you: with the new releases of chrome and safari, do you know if webkit has im...

Getting screenshot of a child window running OpenGL in it (Windows)

I have a main window with children. I need to take screenshots programmatically to crop and draw them back on my main window. The way I do this is: HDC hDC = GetWindowDC(hWnd); HDC memDC = CreateCompatibleDC(hDC); HBITMAP memBM = CreateCompatibleBitmap(hDC, Width, Height); HBITMAP OldBM = (HBITMAP)::SelectObject(memDC, memBM ); BitBlt(m...

Video screencapture datalogging in C#

I have a C# application that has some issues that I am finding hard to track down. I believe it MAY be user related but to confirm this I want to have some sort of video screen capture or logging of what is going on inside the application. Does anyone know any resources or information (or pre built - free) solutions I can use? The sma...

What pure server side technologies allow html website capture on shared hosting

As far as I know, only PHP can't be used for this. But since not many providers allow installation of Perl/Python/... scripts on shared, I'm wondering whether there is free solution for either creation of thumbnails or full-size capturing on the fly / on demand and save it to server (since snapshot lets you only to show thumbnails on h...

How Do I Take a Screen Shot of a UIView?

I am wondering how my iPhone app can take a screen shot of a specific UIView as a UIImage. I tried this code but all I get is a blank image. UIGraphicsBeginImageContext(CGSizeMake(320,480)); CGContextRef context = UIGraphicsGetCurrentContext(); [myUIView.layer drawInContext:context]; UIImage *screenShot = UIGraphicsGetImageFromCurrentI...

Is there a way to prevent detection by the website when a screenshot is taken using a Mac Os X Safari browser?

There is a thread discussing Darwin notifications being sent after a screenshot is taken. Does this apply to websites viewed via Safari? Do the same restrictions apply to PC sytems? Would taking the picture via a Python script in Linux or running Safari in a VM circumvent detection? ...

Way to take screenshot of a pane in visual studio

Hi, In our project, before we do a check in to VSS, we need to take screen-shot of the check-in file list and store in a folder with date and time. Is there anyway to take screen-shot of the whole page inside visual studio? Thanks, Mahesh ...

Documenting applications - automation / semi-automation for screenshots?

For me one of the biggest bores of being a developer is writing user documentation. (I am referring to the stuff that gets exported into PDF files files that ship with the product, not comments in code here). The task off adding or updating new bits of text to the existing documentation is OK. However having to take screenshots of selec...

Windows Forms Screenshot of whole screen, except the calling window?

Just to take on a challenge, I decided to write an application to magnify only a particular section of the screen (under the mouse, following the mouse). The best way I can think to do this is to take a screenshot of the space under the form, enlarge, and paint on the form. I'm using this section of code to snap the picture inside a time...

Capturing high-quality(300dpi) screenshots of QT-based app in Linux

I need to make a screenshot of my form created in QT designer. There are numerous approaches to do screenshots(gimp, import, etc..) but alt of them deal with same dpi as on my monitor(about 100dpi). This is quite enough to publish on web site, but 300dpi images are required for paper publications. Are there any ways to create 300dpi scre...

Taking screenshot of a webpage programmatically

I want to take sceenshot of a webpage programmatically given the URL as input. And here is what I have till now: // The size of the browser window when we want to take the screenshot (and the size of the resulting bitmap) Bitmap bitmap = new Bitmap(1024, 768); Rectangle bitmapRect = new Rectangle(0, 0, 1024, 768...

Screen capture from NPAPI or javascript

Hi, I'm writing an npapi plugin. I was wondering if there is a way to capture the browser screen from my plugin using either npapi or javascript. Any help would be appreciated. Thanks ...

How to capture a portion of screen.

I just want to know how to capture a portion of the screen .Getting the screen hot of a particular location and size in windows I want to do this using some windows key functionality I am not doing using and code and i am not looking for any tool. I just want to know if this is possible in windows ...

Is there an easy way to automate the taking of screenshots?

In what language can I write a quick program to take screenshots and also possibly emulate a keypress? I have an animated/interactive flash movie that is a presentation. I want to take a screenshot after I press a particular key. The end effect is a bunch of screenshots that I can print...basically captures the key moments in the flas...

iPhone screenshot

How can I create a iPhone screenshot? When I open Xcode I go to Window>Organizer but there is no Devices tab visible. I have a jail-braken phone with OS 3.1.2. ...

Thumbnails from HTML pages created and used automatically in web application

I am working on a Ruby on Rails app that visualizes product trees. The tree is built of nodes an everything is rendered in HTML/CSS3. Some of the products make several hundred SQL queries as the tree builds up (up to 800 queries on the biggest tree). I'd like to have small thumbnails of each tree to present it on an index page. So rende...

What can be causing the problem that I can't make a screenshot from my iPhone app in the Organizer window?

For some reason, when I press "Capture" while my device is connected and running the app (launched via Build & Run in Xcode), nothing happens. Never get a screenshot. iPhone OS 3.0. What can be the problem. ...