Questions tagged [screenshot]

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

4322 questions
56
votes
2 answers

How to save the contents of a div as a image?

Basically, I am doing what the heading states, attempting to save the contents of a div as an image. I plan on making a small online application for the iPad. One function that is a must is having a 'Save' button that can save the full webpage as an…
Fizzix
  • 20,849
  • 34
  • 100
  • 160
55
votes
4 answers

How to make a movie out of images in python

I currently try to make a movie out of images, but i could not find anything helpful . Here is my code so far: import time from PIL import ImageGrab x =0 while True: try: x+= 1 …
Victor
  • 1,019
  • 1
  • 6
  • 10
53
votes
4 answers

Get a screenshot of a specific application

I know I can get the screenshot of the entire screen using Graphics.CopyFromScreen(). However, what if I just want the screenshot of a specific application?
Hao Wooi Lim
  • 3,748
  • 4
  • 27
  • 34
51
votes
13 answers

Best way to take screenshots of tests in Selenium 2?

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 page is displayed. Are there any particular tools you…
James
  • 5,322
  • 9
  • 32
  • 42
48
votes
9 answers

Get screenshot on Windows with Python?

I am creating a Beta Testers reporting module so they can send in thier comments on my software, but I would like to have the option to include a screenshot with the report. How do I take a screenshot of the screen with Python on Windows? I have…
Zac Brown
  • 5,213
  • 17
  • 53
  • 102
48
votes
7 answers

Programmatically get a screenshot of a 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…
Mike B
  • 12,507
  • 20
  • 82
  • 108
46
votes
5 answers

Android take screen shot programmatically

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 works. When i say sorta i mean it makes an image on my…
user577732
  • 3,626
  • 9
  • 50
  • 75
46
votes
14 answers

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 pulling it like this: adb pull /dev/graphics/fb0…
Marcus
  • 1,971
  • 2
  • 20
  • 19
45
votes
14 answers

Take a screenshot of a whole View

I have built a table which is basically done by HorizontalScrollView inside a ScrollView. I made the user can edit the fields. Now I want to save the table on a screen, jpg, png, pdf or anything else. The problem is - the table is nearly always…
softwaresupply
  • 1,748
  • 3
  • 18
  • 34
45
votes
1 answer

How to record screen and take screenshots, using Android API?

Background Android got a new API on Kitkat and Lollipop, to video capture the screen. You can do it either via the ADB tool or via code (starting from Lollipop). Ever since the new API was out, many apps came to that use this feature, allowing to…
45
votes
3 answers

Generate iPhone and iPad screenshots including device frame

I have used the Android Device Art Generator but would like the same thing for iOS devices. Does such a thing exist? I want to take screenshots of my iOS apps and then wrap them nicely in iPad an iPhone graphics for marketing material purposes. I…
Kieran
  • 5,646
  • 3
  • 22
  • 32
44
votes
10 answers

Netbeans Shortcut to Open File

I remember seeing someone use a shortcut in NetBeans to open a dialog similar to phpStrom that can open files based on class names or is it file name. whats that?
Jiew Meng
  • 74,635
  • 166
  • 442
  • 756
44
votes
9 answers

How to take screenshot in android emulator

From Android 4.0, it supports volumn down+power key to take screenshot and saved in gallery. But how to do this in android emulator. I know in eclipse, there is a 'take screenshot' button, but this is not what I want. I need it in the emulator and…
lseeo
  • 729
  • 2
  • 9
  • 14
43
votes
13 answers

How to take a screenshot of current Activity and then share it?

I need to take a screenshot of Activity (without the title bar, and the user should NOT see that a screenshot has actually been taken) and then share it via an action menu button "share". I have already tried some solutions, but they didn't work for…
just_deko
  • 892
  • 1
  • 12
  • 25
42
votes
7 answers

Prevent screen capture in an iOS app

I need to prevent screen capture by users of my app, for security reasons. The contents I display are confidential and should not be copied onto the device. I saw one answer on Stack Overflow, but for Android. Is it possible somehow in iOS to…
zolio
  • 1,923
  • 4
  • 17
  • 34