screen-capture

Disable IE script debugging via IE control

Bleh; Knowing how to ask the question is always the hardest so I explain a little more. I'm using CAxWindow to create an IE window internally and passing in the URL via the string class argument: CAxWindow wnd; m_hwndWebBrowser = wnd.Create(m_hWnd, rect, m_URI, WS_CHILD|WS_DISABLED, 0); It's part of an automated utility for anyone to...

Screen Capture control

Is there any control (To use in a c# project) to record user activities and then encoding it to a video file? ...

Capturing a hidden window in Vista

My understanding of Vista is that each window gets it's own screen buffer which is then alpha blended etc to create the screen. So, is there any way to screen capture a window which is obscured or partly off screen by directly reading these buffers? Vista does it when you alt-tab or hover the mouse over the taskbar. I'm doing this in D...

Java screen capture applet

Hello, Am wondering if there is any applet which I can use and customize to capture the users screen (windows and mac) in java? I saw jxCapture but it takes only screen shots. I want to use the tool to capture the screen (for screencast) and then export as flv format. Am wondering whats the best solution for that? Is there any applet/s...

creating video file

How would I create an application that records the users interactions with the desktop in C# and then convert it to a video format such as avi? ...

creating video file

How would I create an class that records the users interactions with the desktop. and it should convert it to a video format such as wmv file? ...

Capturing a Window that is hidden or minimized

I followed this tutorial (there's a bit more than what's listed here because in my code I get a window via mouse click) for grabbing a window as a bitmap and then rendering that bitmap in a different window. My question: When that window is minimized or hidden (SW_HIDE) my screen capture doesn't work, so is it possible to capture a w...

I need to record a demo of our application. Can anyone recommend a good screen recorder?

I need to record a demo of our application. Can anyone recommend a good screen recorder? I have tried CamStudio, but it's throwing errors. Any other good free software I should try? ...

Is it possible to take a screenshot of a web page with ASP.net with C# Code

Is it possible to take a screenshot of a web page with ASP.net with C# Code and then submit that back to the server? In this code access only local host only, but same source code not access to the IIS, CopyFromScreen error ware occurred. What is the reason is it possible? Sample Source Code: Bitmap Bitmap; Graphics Graps; Bitmap = ne...

Free/Open source screen capturing library in java.

I am working on screen capturing tool. Currently my requirement is to capture screen shot of current screen, which can be extended to screen cast (video) etc. So just want to know which is best (open source/ free) java framework/library which meets my requirement. ...

Screen capture from windows service

I've got DirectShow based screen capture software. Internally it calls CopyScreenToBitmap function to grab screen. Then the picture is compressed by ffdshow. It works fine as a desktop application, but as window service, on certain computers it does not work (black picture). I've set 'Allow service to interact with desktop' and run that ...

In any languages, Can I capture a webpage and save it image file? (no install, no activeX)

I heard it is possible to capture webpages by using PHP(maybe above 6.0) on windows server. I got some sample code and tested. but there are no code to perform rightly. If you know some right ways to capture webpage save it image file on web applications? Please teach me. ...

I'm writing a screen capture module in Java, but I'm having serious performance issues writing screenshots to disk. What else can I do?

I'm writing a screen capture module using the Robot class. I'm taking screenshots of the application every x milliseconds and writing them to disk. After screen capture is finished, I'm compiling the screenshots to video with FFMPEG. However, writing images to disk is extremely slow and grinds my application to a halt. What am I missing...

Capture Screen Image in C++ on OSX

Is there a way to programatically take a screenshot (or somehow get access to an image) of the current screen display on a mac? Preferably, in C++, not Objective-C. ...

Fade Windows Desktop in C++

Hi, I am trying to work out how to fade out or dim the Windows Desktop and then display a rectangular portion of the desktop normally. This is for a screen area capture program. You can see the precise effect I am after in Jing Fading the background in a Web page is also commonly done. Any tips/pointers/C++ source much appreciated. Goog...

Windows Media Encoding C# capture window - how?

Env.: Windows Media Encoding 9 SDK, C#. I have a task to capture window video. Successfully captured desktop, as explained in C# code samples. Now trying capture window or area. C++ sample uses PropertyBag to specify area. Please help how specify region/window for C# capture code? I use Windows Media Encoding, because it simplifies follo...

How to capture screenshot of a web site in unattended mode?

I need to write a .NET application that captures screenshots of various web pages periodically. The application needs to run as a windows service in unattended mode - when there is no user session or when the workstation is locked. A situation similar to: (http://stackoverflow.com/questions/1445788/c-screenshot-of-process-under-windows-s...

Programmatically take ScreenShot of Desktop in Ruby?

Hey there, I asked this question about taking a picture of a webpage programmatically, and I've downloaded and got webkit2png working (taking pictures of HTML pages like blogs and whatnot). So cool, thanks for showing me that! Now I would like to start doing more, like being able to take pictures of Flash websites after they have load...

Captured UIView image has distorted colors (iPhone SDK)

Hi all, I'm using the UIGraphicsGetImageFromCurrentImageContext() function to capture the screen contents into an UIImage object (previously rendered into an Image context). This works great for both the simulator and a real device, however in the latter the resulting image has a few pixels with distorted colors, as seen here: Please...

Getting text from the screen at a specific coordinate

Hi all I have created a mouse event handler that gives me the screen coordinate (X,Y) on a right click of the mouse. I did that because I want to get the text ( a letter) that is located at that position. I know how to get the XY position on the screen but I can't figure out how to get the text or object at that position. Need some h...