For questions about screenshots — digital images that show the contents of a computer display,
Questions tagged [screenshot]
4722 questions
2
votes
1 answer
Take a screenshot of a DirectX game in Python
I'm looking at a way to take screenshot of DirectX games in Python. I already tried to use PIL and other stuff but I only end up with black screenshots. I saw that the project directpython11 provided a Python binding to some DirectX stuff but I…

alefauch
- 31
- 1
- 3
2
votes
4 answers
Which Windows (C++) screen capture libraries fit my requirements?
I'm ready to outsource the screen capture functionality of our application, because it's not our core business and I've spent too much time trying to get our code to do all the things I need. Time for a specialist, I think. My requirements, in…

jeffm
- 3,120
- 1
- 34
- 57
2
votes
3 answers
Windows Phone 8 - take a screenshot
Is there any way to take a screenshot on Windows Phone 8 (or 7.1) programmatically?
For Windows Phone 7/7.1, there is at least an inofficial solution:
http://forum.xda-developers.com/showthread.php?t=1006331
But I have no idea what to do to get…

jakob.j
- 942
- 13
- 28
2
votes
4 answers
selenium.captureEntirePageScreenshot does not work but selenium.captureScreenshot works
I'm running Selenium with TestNG using Eclipse and Selenium RC. I used the command:
selenium.captureEntirePageScreenshot("\\test.png","");
but got the following error:
com.thoughtworks.selenium.SeleniumException: ERROR: Command execution failure.…

Mugen
- 1,417
- 5
- 22
- 40
2
votes
4 answers
Fast screen capture and video recording
Has anyone worked on capturing screen to video stream (to store in local file or send to network)?
I understand how it can be done, and have several test solutions working - but we have trouble achieving decent performance. We need to capture about…

ima
- 8,105
- 3
- 20
- 19
2
votes
2 answers
capture Camera view with Google Earth API
Is it possible to programmatically capture the camera view from the Google Earth API?

Greg Angevine
- 21
- 1
2
votes
1 answer
Javascript library to take screenshot of web page
This similar question was asked a long time a ago (4 years ago). I was wondering if there are any new advancements in the library ecosystem.
My use case is quite simple, I have a styled DIV and some elements within - I'd like to create a screenshot…

sergserg
- 21,716
- 41
- 129
- 182
2
votes
2 answers
Pseudo transparency with PyQT
I want to create a pseudo-transparent window by taking a screenshot of what would be behind the window if it wasn't there using PyQt. The following code takes a screenshot:
#!/usr/bin/python3
from PyQt4.QtGui import *
app = QApplication([])
widget…

Tobias Leupold
- 1,512
- 1
- 16
- 41
2
votes
4 answers
Is it possible to take a screen shot without opening that particular view ?
I m new to iPhone developing. not much familiar about view's and layouts in iPhone Technology.
I want to achieve is :
I am in page that contains one button, on click of that button i open chart view (using core plot).
I want to take a screen shot…
user1408325
2
votes
1 answer
How to capture a screenshot of a web browser's render of a website visit remotely?
I have a design issue that seems to be working for everyone I've had test the design rendering 100% of the time, but for a handful of visitors the rendering is off. I am curious as to whether there is a way to use a JavaScript or other option to…

ylluminate
- 12,102
- 17
- 78
- 152
2
votes
3 answers
How to reset value of captured pixel
I'm trying to make a C# function that returns the R, G and B values of every fourth pixel from a screenshot bitmap. This is part of my code.
for (int ix = 4; ix < 1366; ix = ix + 4)
{
x = x + 4;
for (int iy = 3; iy < 768; iy = iy + 4)
…

Senti
- 21
- 1
- 3
2
votes
1 answer
Detect repainted area of screen in java
I am creating an applet which will do something like screen sharing . For that I am using Robot class to capture screen area . I want to capture the dirty / repainted areas after first screen shot. I think RepaintManager manager can be used for…

Sydney
- 295
- 1
- 4
- 9
2
votes
0 answers
getdrawingcache() is null on view android
I want take screen shot on my layout,below code used to measure child count on relative layout,and then draw layout.But i get getdrawingcache() value as null.
View v=relative layout;
int allitemsheight =…

Jems
- 33
- 1
- 7
2
votes
2 answers
How to take a round screen shot?
I've seen a lot of questions and answers about screenshot, I know how to do it, this is not my problem, this is my code:
- (void)takeScreenShot
{
//UIGraphicsBeginImageContextWithOptions(CGSizeMake(320, 340), YES, 0.);
…

ytpm
- 4,962
- 6
- 56
- 113
2
votes
1 answer
Is it possible to take a screenshot of html tag content with OpenLaszlo?
I am creating an openlaszlo application where an html tag will be present and i have some components that are draggable in the swf. I want to drag these components over the html. This is not possible.
So what i am thinking of is to take a screenshot…

karthick
- 11,998
- 6
- 56
- 88