Questions tagged [screenshot]

For questions about screenshots — digital images that show the contents of a computer display,

4722 questions
2
votes
0 answers

How to share a selective screenshot in a UIActivityViewController

I am trying to share a screenshot of specific area of my screen via the UIActivityViewControler social share features. I imagine I need to essentially nest the instructions to screenshot and the dimensions of desired screenshot location within the…
2
votes
1 answer

Selenium RC sending blank screenshots through (winxp/winserver)

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…
pgn
  • 669
  • 1
  • 6
  • 16
2
votes
3 answers

How can I take a screenshot of a website with MVC?

I am struggling to find a way to take a screenshot of a website in MVC4. I have seen two potential solutions, which neither work well for MVC. The first is using the WebBrowser, tutorial found here, but this gives me a ActiveX control…
happygilmore
  • 3,008
  • 4
  • 23
  • 37
2
votes
2 answers

Taking an iOS Screenshot Mixing OpenGLES and UIKIT from a parent class

I know this question is answered quite a bit but I have a different situation it seems. I'm trying to write a top level function where I can take a screenshot of my app at anytime, be it openGLES or UIKit, and I won't have access to the underlying…
Brian L. Clark
  • 588
  • 5
  • 19
2
votes
1 answer

Screen capture program in C or C++ and Linux

I am looking for a program to capture screen in Linux using C or Cpp. can someone help with giving a skeleton structure or program what can help me. Thanks and Regards.
Pferd
  • 49
  • 1
  • 1
  • 8
2
votes
4 answers

Take a screen shot and save to desktop with current time as the name

I am trying to make a script that will take a screen shot, save the image to the desktop, and name it the date. Similar to what would happen if I used cmd + shift + 3. The only issue is the name of the image is only "Screen" instead of the entire…
Tyler Mullins
  • 77
  • 3
  • 10
2
votes
1 answer

Screenshot compression loss of quality

Maybe someone else was faced with this problem: As the title says, when uploading screenshots from devices to our server image quality degradation is quite high. You can see one example on the following…
Igor Čordaš
  • 5,785
  • 4
  • 42
  • 54
2
votes
3 answers

How to get at test field from TestNG IInvokedMethodListener?

I'm using TestNG 6.8 + Selenium WebDriver 2.32 to test the GUI of a web app. In cases of failed tests I would like to take a screenshot of application GUI. What I have: I can detect test failure by implementing testng's IInvokedMethodListener I…
Jan Hrcek
  • 626
  • 11
  • 24
2
votes
5 answers

Take Screenshot of a Web Page client side or server side

I'm working on a project where I need to basically take the screenshot of the pages users create on my application, and I'm not sure where to start. I've looked at other sites that do this like about.me and I'm wondering what they might be doing to…
steve
  • 3,878
  • 7
  • 34
  • 49
2
votes
2 answers

WebGL single frame "screenshot" of webGL

tried searching for something like this, but I've had no luck. I'm trying to open a new tab with a screenshot of the current state of my webgl image. Basically, it's a 3d model, with the ability to change which objects are displayed, the color of…
2
votes
2 answers

Capture and save screenshot as you click - Windows C#

First up, sorry for the long question but I want to make sure I include everything that I have come across and done so far. I want to make a C# Windows Application for the tutorials team that will serve as an alternative for the boring manual task…
G J
  • 101
  • 2
  • 4
2
votes
3 answers

writing app to take a screenshot, and then save it to the gallery of my Android phone, but the saved screenshot is completely black

Here is my Screenshot class. The app is saving the screenshot in my gallery, which is what I want, but the image is completely black! If you had any suggestions to make this work, they would be much appreciated! Thanks! public class Screenshot…
user2341537
  • 25
  • 1
  • 5
2
votes
1 answer

Create screenshot with app bar WP8

In my application there is a possibility to create screenshot of current view. I implement it with WriteableBitmap class. For example: var frame = Application.Current.RootVisual as PhoneApplicationFrame; WriteableBitmap bitmap = new…
2
votes
1 answer

How to make correspond PhantomJS screenshot dimension with an actual webpage?

I am taking a screenshot from an webpage of mine with PhantomJS. The code is simply var page = require('webpage').create(); page.open('Target_Zone_Selection.html', function () { page.viewportSize = {width: 1024, height: 800}; …
goodblues
  • 51
  • 5
2
votes
1 answer

iPad UIImageView creates aliased edges when scaling down larger UIImages, but not when displaying a screenshot of itself.

I'm running into a weird issue with a UIImage displayed within a UIImageView. If I put a 1024x1024 image within a 173x173 image view with "scale to fill" set, the result is aliased. However, if I put the same image in, then take a screenshot of the…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407