Tagged Questions

A screenshot, screen capture, or screen dump is an image taken by the computer to record the visible items displayed on the monitor or another visual output device

learn more… | top users | synonyms

58
votes
3answers
7k views

Using HTML5/Canvas/Javascript to take screenshots

Google's "Report a Bug" or "Feedback Tool" lets you select an area of your browser window to create a screenshot that is submitted with your feedback about a bug. screenshot by Jason Small, posted ...
45
votes
17answers
36k views

Website screenshots using PHP

Is there any way of taking a screenshot of a website in PHP, then saving it to a file?
35
votes
6answers
5k views

Can you take a “screenshot” of the page using Canvas?

I have a page where we're positioning a bunch of elements using CSS, and changing their "top and left" positions using JS. I've had reports that these things have been misaligned, but a user has ...
24
votes
9answers
12k views

“Convert web page to image”

I wonder if there is any way to convert a web page (from any given URL) into an image? this is basically equivalent to taking a "screenshot" of the page after opening it. There is a method to do it ...
21
votes
5answers
3k views

How to screenshot website in JavaScript client-side / how Google did it? (no need to access HDD)

I'm working on web application that need to render page and make a screenshot on client (browser) side. I don't need screenshot to be saved on local HDD though, just kept in RAM and send to ...
18
votes
6answers
21k views

Command line program to create website screenshots (on Linux)

What is a good command line tool to create screenshots of websites on Linux? I need to automatically generate screenshots of websites without human interaction. The only tool that I found was ...
16
votes
5answers
3k views

Screenshot Android

How can I take screenshot of selected area of phone-screen not by any program, but from code.
16
votes
3answers
6k views

Java: Is there a way to take a screenshot using java and save it to some sort of image?

Simple as the title states: Can you use only Java commands to take a screenshot and save it? Or, do I need to use an OS specific program to take the screenshot and then grab it off the clipboard?
15
votes
4answers
23k views

C# - Capture screenshot of active window

I am making a screen capturing application and everything is going fine. All I need to do is capture the active window and take a screenshot of this active window. Does anyone know how I can do ...
14
votes
7answers
1k views

Automatically taking screenshots of program window

I'm looking for a software that combines macro recording with screenshot taking capabilities. We have a software manual with a number of screenshots. When new version of software is released we need ...
14
votes
5answers
3k views

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 ...
13
votes
5answers
6k views

What is the best way to take screenshots of a Window with C++ in Windows?

What is the best (easiest) way to take a screenshot of an running application with C++ under Windows?
13
votes
15answers
17k views

How can I save a screenshot directly to a file in Windows?

In Windows XP, one can press Alt-PrintScreen to copy an image of the active window, or Ctrl-PrintScreen to copy an image of the full desktop. This can then be pasted into applications that accept ...
13
votes
8answers
12k views

Take a screenshot via a python script. [Linux]

I want to take a screenshot via a python script and unobtrusively save it. I'm only interested in the Linux solution, and should support any X based environment.
12
votes
5answers
8k views

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?
12
votes
6answers
8k views

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 ...
11
votes
3answers
479 views

Android take screen shot programatically

First off i am writing a root app so root permissions are no issue. I've searched and searched and found a lot of code that never worked for me here is what i've pieced together so far and sorta ...
11
votes
10answers
752 views

Are there any good sites to view screenshots of actual web applications?

I am looking for some websites that have actual screenshots of web applications, as well as, things like login screens, grids/tables, edit forms, css examples and so on. I find that looking at other ...
10
votes
3answers
198 views

COCOS 2D screen shot is black in Android

I am using the following code. The image is saved but it is BLACK. Please see my code and tell me where i am doing wrong. I am using this code in the Menu. case R.id.id_menu_Save: ...
10
votes
5answers
5k views

How can I generate a screenshot of a webpage using a server-side script?

I need a server-side script (PHP, Python) to capture a webpage to a PNG, JPG, Tiff, GIF image and resize them to a thumbnail. What is the best way to accomplish this? See also: Web Page ...
9
votes
3answers
897 views

Capture a scrolling window contents screenshot

I need to capture a screenshot of the scrolling window's client area, using .NET. My first priority is capturing web page screenshots. But this can be not the only one use case. For example it can be ...
9
votes
7answers
5k views

Screenshot of the Nexus One from adb?

My goal is to be able to type a one word command and get a screenshot from a rooted Nexus One attached by USB. So far, I can get the framebuffer which I believe is a 32bit xRGB888 raw image by ...
9
votes
7answers
3k views

Create a website screenshot/thumbnail server-side?

I'm building a rails app that needs to grab and display a thumbnail screenshot from a URL. I'm having a difficult time even finding where to start. Any help would be greatly appreciated. Thanks.
9
votes
6answers
3k views

How can I programmatically create a screen shot of a given Web site?

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 ...
8
votes
1answer
240 views

JNA library slower screenshot than robot class?

Since Robot.createScreenCaputure() method is slow, I decided to use native library. I searched and found this forum and find a specific code snipplet which uses JNA Library. It's an old version so ...
8
votes
1answer
317 views

Ensuring exported JPEG is less then maximum file size

I currently have an application which takes a screenshot of a presenter's desktop and then broadcasts it via a custom protocol to the viewers. In order for the images to be transfered quick enough to ...
8
votes
1answer
2k views

Android take screenshot via code

This shouldn't be too tough of a question. I want the ability to take a screenshot of my layout (view) and send it via sms. Can someone walk me though the steps? Thanks! Edit: It doesn't have to ...
8
votes
2answers
2k views

How to get Screen Shot / Screen Capture from Web user on MVC site?

I've seen a few different apps that allow users to take screen shots on their PC and then the utility will automatically upload the image to the web server. I'd like to incorporate this type of ...
8
votes
5answers
5k views

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)); ...
8
votes
2answers
6k views

C# - Capturing the Mouse cursor image

BACKGROUND I am writing a screen capture application My code is based derived from this project: http://www.codeproject.com/KB/cs/DesktopCaptureWithMouse.aspx?display=Print Note that the code ...
8
votes
3answers
913 views

How do you take a Screenshot of a website via .Net code?

Is it possible to take a screen shot of any given url using .Net code? What is the easiest way to do it?
8
votes
3answers
1k views

Are there any free ways to turn an html page into an image with .net

I want to take html, including the text and images and turn it into one image containing everything. Is there a free way to do it? This is using .net 3.5. See also: Server Generated web ...
7
votes
4answers
3k views

Best way to take screenshots of tests in Selenium 2?

So I need a way to take screenshots of my functional tests. Right now I'm using Selenium 2 with C# bindings. I pretty much want to take a screenshot at the end of the test to make sure the desired ...
7
votes
4answers
2k views

Java: how to take a screenshot fast

I am implementing a simple eye tracker, which requires fast screenshoting of what is happening on the screen simultaneously with capturing the video from webcam. The thing is that the way of doing it ...
7
votes
3answers
4k views

How to get a website screenshot in python

What I want to achieve is to get a website screenshot from any website in python. Env: Linux
6
votes
3answers
98 views

How to match similar colours in Java using getRGB

I am taking screenshots of the screen using robot and then searching for smaller images within those screenshots. This works on Windows but not OS X because of gamma correction. The best solution I ...
6
votes
4answers
281 views

Taking Screenshot

I'm developing an application for taking screenshots in the device. In this application, we can draw anything on the screen. For this I am using Canvas, Paint and Path to do this. I'm using this code ...
6
votes
3answers
112 views

How to take screenshot of a website with Rails 3.1? — without using a service

Almost every answer I've found references using some existing service. Is there a way to do this using Rails 3.1 programmatically? This was dead easy to do with PHP (there are prebuilt libraries in ...
6
votes
3answers
157 views

How to block a linux program from being print screened? [closed]

I need to prevent my users from print screening the data that my program displays. Right now the idea I have is to make it a full screen program, where probably calling any other linux shortcuts or ...
6
votes
4answers
825 views

Taking screen shot of a (remote) web page programmatically

I'm trying to take screen shots of web pages programmatically. I may also require to take screen shots of full or partial page. Is there a way to do this?
6
votes
1answer
15k views

How to take screenshots in Android 2.3.3 without root?

I've been waiting for this feature. Android 2.3.3 allows to take screenshot without root. http://mobiputing.com/2011/03/google-android-2-3-3-adds-native-screenshot-support-may-break-google-voice/ ...
6
votes
3answers
764 views

HTML5 video screenshot

I'm trying to take a screenshot of video with predefined time in the movie. So I tried it with the canvas element. The thing is that the video must be playing when you draw the image of the video, but ...
6
votes
1answer
517 views

C# WPF grab screenshot with SnippingTool effect

I'm trying to integrate a screenshot grabbing feature in my WPF app and I'd like it to look like snipping tool. So far I've managed accomplish something similar by creating a fullscreen window (with ...
6
votes
4answers
557 views

Is it technically possible to take a screenshot of a website programmatically?

Do you think is technically possible to take a screeshot of a website programmatically? I would like to craft a scheduled Python task that crawls a list of websites taking an homepage screenshot of ...
6
votes
4answers
562 views

C#: how to take a screenshot of a portion of screen

like TakeScreenshot(new Rectangle(0,0,100,100), "output.jpg");
6
votes
2answers
2k views

Is there a way to take a screenshot in MS-Access with vba?

I want to use vba to take a screenshot (which will then be sent as an email attachment). Ideally, I'd like to take a screenshot of just the active form. Is there any way to do this?
6
votes
4answers
2k views

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 ...
6
votes
5answers
604 views

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 ...
6
votes
4answers
3k views

Disabling iPhone screenshot feature

I'm working on an enterprise iPhone application for a client, the issue at hand is customer information will show up on the phone. My client is worried that the information could be caught using the ...
6
votes
4answers
882 views

How May I Capture the Screen in a Bitmap?

I want to print the screen (not with the printer) I want to print it like the 'print button' on the keyboard and get an image. Any idea? I did have no starting point :(

1 2 3 4 5 15