Questions tagged [screen-capture]

Screen capturing is the act of copying the content of the screen to an image or other data structure, either to a file or memory.

Screen capturing is the act of copying the content of the screen to an image or other data structure, either to a file or memory.

802 questions
0
votes
1 answer

windows screen capture

I want to Capture a image of a process on windows , I have the handle of the window for the process . If I do a BitBlt with SRCCOPY and no CAPTUREBLT, SO by default the image should only contain the process window according to explanation in…
0
votes
1 answer

Screen Capture (CopyFromScreen didn't work fully)

Possible Duplicate: How to get screenshot to include the invoking window (on XP) I'm currently using CopyFromScreen(0, 0, 0, 0, imageSize) to capture the desktop but unfortunately, there is a particular winform's contents which it didn't capture…
Darren Ng
  • 373
  • 1
  • 5
  • 20
0
votes
1 answer

Screen capture with three embedded controllers where one is a UIImagePicker in video mode?

I need to perform a live screen capture of the entire iPhone screen. The screen has three container views embedded. One of these containers is a UIImagePickerController. Everything on the screen captures beautifully, but the one container that…
Rob
  • 4,149
  • 5
  • 34
  • 48
0
votes
1 answer

Screenshot capture is extremely slow

I'm coding an application that can take screenshots, it needs to take them ultra fast (multiple a second) then process them. Here is the code I'm using to do it - it works but is extremely slow. using System.Drawing; using…
0
votes
1 answer

phantomjs // render webpage from give dom

is there any chance to render/process a webpage just from the given DOM? At the moment we can use page.open but just with a url. In my app i've got the DOM from somewhere else so there is no need to get it twice :) I now that you can set the page…
Jörn
  • 845
  • 5
  • 16
0
votes
3 answers

How can I capture the whole web page in an Android phone while using its browser?

When I visit a web page using Android browser I can capture the visible part of the web page making a screenshot of the whole screen, but I need capture the whole web page, including the part of the web page that is outside the screen, I mean, not…
user1785721
0
votes
2 answers

Windows media foundation use raw image to encode video

I'm working on a project that requires me to record webcam, microphone, and the screen. I have webcam recording, audio is a work in progress, and I stumbled across CMonitor wrapper (which I did some minor modifications to) to grab RGB images of the…
OzBarry
  • 1,098
  • 1
  • 17
  • 44
0
votes
2 answers

How to capture a window using the command line

The screencapture command doesn't seem to be able to capture a specific window when it is invoked from the command line, but is able to do it when it is used interactively whit shift+command+4. How can I capture a window from a script ?
alecail
  • 3,993
  • 4
  • 33
  • 52
0
votes
0 answers

Screen capture behaviour

I use this code to capture the desktop: Frame::Frame() { source_win=GetDesktopWindow(); RECT r; GetWindowRect(source_win,&r); width=r.right; height=r.bottom; source_context=GetDC(source_win); …
user877329
  • 6,717
  • 8
  • 46
  • 88
0
votes
1 answer

How to implement server side screen capture with Chromium?

I am building a site that can take web page screen capture of the given URL, and then output a image URL. There have been so many services like this, but I am curious about how it works. Initially, I guess I have to execute a browser on server-side,…
Weihang Jian
  • 7,826
  • 4
  • 44
  • 55
0
votes
1 answer

Using built-in screen capture functions in OSX and receive output?

As most advanced mac users know there is a simple way to take a screenshot. Just using command-shift-4 to take part of a screen as an example. But is there a possibility to use this functionality from say, a python script? I've seen other threads…
Ms01
  • 4,420
  • 9
  • 48
  • 80
0
votes
1 answer

Capture ViewGroup into an Image File

I have a simple combination of one ImageView and two TextViews over it. I would like to make the TextViews overlap the ImageView, and then save the combination as a whole (as PNG for example). I know I can layer the TextViews over the ImageView…
user1034697
0
votes
1 answer

Android device screen capture DDMS red tint in eclipse

I can take device screen captures with the DDMS function in Eclipse. Screen capturing is working fine but the image always has a red tint. It looks like this: http://imageshack.us/photo/my-images/585/deviceredtint.png/ The device I'm capturing is a…
Bruno Bieri
  • 9,724
  • 11
  • 63
  • 92
0
votes
1 answer

Is it possible to record the things happening on an iPhone/iPad screen without Jailbreaking?

I would like to record the video of things happening in an iPhone/iPad screen. Here there is a change from usual applications available, that records device screen(view inside) from an application. I need to record things from the home screen of the…
0
votes
1 answer

Run script in a fullscreen program (Powerpoint Office:Mac 2011)

I have an applescript that does screen capture of a specific monitor (in a dual-monitor configuration) to a user-defined folder. I wish to run this using a shortcut keyboard command during a powerpoint presentation. However, it seems that…