screenshot

FogBugz Screenshot does not start up at boot

Some of our FogBugz users experience that the Screenshot tool does not start-up automatically at boot. The quickest work-around is to re-install it. Any ideas on what causes this to happen? And how to prevent it from happening? ...

Is there a way to take a screenshot in MS-Access with vba?

I want to use vba to take a screenshot (which will then be sent as an email attachment). Ideally, I'd like to take a screenshot of just the active form. Is there any way to do this? ...

how to capture part of the screen in Silverlight

i want to do a screen capture of a running silverlight 3 application, from within the app, and then i want to present this to the user as a thumbnail, say in an Image control. am i dreaming? ...

What tool can I use to test my web app in different resolutions?

Back in the past, i found a third party webpage that was able to capture and save images of my website in different resolutions and browsers. Of course i have no more that bookmark... So is there any webpage or application where i can see how my webpage looks like in different resolution? And here are the resolutions i would like to ...

How do I disable screenshots on iphone or automatically watermark image?

Hi, I want to prevent the distribution of images from an iphone app that I've authored. As such, I would like to either prevent the screenshot feature from working whilst my app is running or, if the user does take a screenshot, to watermark the image automatically. Any ideas as to how I could so this? ...

C# - Take Screenshot based on a Timer

Hello everybody. I'm trying to create a WinForms app that takes a screenshot on a set interval. I think my code is correct, but when I try to run it, I get the error message "System.Runtime.InteropServices.ExternalException was unhandled, A generic error occurred in GDI+." System.Windows.Forms.Timer t = new System.Windows.Forms.Time...

VB.NET Window Screen Capture (ALT+PRINTSCREEN)

Hi, I found that code somewhere and I find it quite useful but I would like to find a way to make it work so it capture only the given window target. Maybe with a processID or Window Name. Even if that window is not active. I do not want to make that window active but want to get a screen capture like if I was doing Alt+PrintScreen on ...

How to get Screen Shot / Screen Capture from Web user on MVC site?

I've seen a few different apps that allow users to take screen shots on their PC and then the utility will automatically upload the image to the web server. I'd like to incorporate this type of functionality into a new MVC site. I could certainly just allow the user to upload their own image, but it'd be cleaner if they could click Cap...

Any Win32 APIs to get the screenshots?

Hi all, I am writing an app, which needs to take the screen shots automatically (just like pressing PrintScreen button). So please suggest me how to get this done. A raw 24 bit BMP image would suffice. PLEASE NOTE: My app is in C, so any win32 APIs that can be called from my code is what I am looking for. (Sometimes back I had got an e...

Can the "screenshot" functionality be removed from an iPhone app?

I'm creating an iPhone app for a client who's not comfortable with allowing users the ability to take a screenshot of the app content. Is there an API to block this while the app is running? ...

Using QT Jambi to make screenshots

Hello everybody, I am using QT Jambi (java) to make screenshots of a browser window. My main method starts the framework like this: QApplication.initialize(new String[1]); ScreenshotMain widget = new ScreenshotMain(); widget.showFullScreen(); QApplication.exec(); and when the browser is done with the loading the following metho...

UIGraphicsGetImageFromCurrentImageContext gives poor quality / low resolution image, how do I get better?

Ok so I am taking a screen shot of a photo I took with my camera on the iPhone. I put the camera photo into UIImageView and grab a screenshot of it using this sort of code (this is from http://www.skylarcantu.com/blog/2009/10/16/saving-a-view-as-an-image/)... - (void)takeScreenshot { UIWindow *theScreen = [[UIApplication sharedApp...

detect if extended desktop is to the left or to the right

So, I have a screen capture utility (it takes full screen shots and saves it to png files) I've written, and it uses SM_CXVIRTUALSCREEN and SM_CYVIRTUALSCREEN to determine the width and height of the desktop. I then get the desktop DC and copy out the bits and save them as png. BitBlt( backDC, 0, 0, backBufferCX, backB...

Replicate Printed Form With Web Form

I'm hoping people have some ideas to help solve this problem. I am developing a C# ASP.NET website and the client requires an online form that users will fill in and submit. OK, so far so good..... Imagine, say, a form that you fill in on paper - they normally have a distinctive look specific to the company and will be filed, quite pos...

Qt grabWindow coordinates shifted from GetCursorPos and GetWindowRect

In Qt, when I use the QPixmap::grabWindow(hwnd,x,y,h,w) function, the coordinates are shifted slightly, when compared to the coordinates using the windows api functions GetCursorPos and GetWindowRect. i.e. (0,0) from the point of view of GetCursorPos and GetWindowRect is at the very top left of the toolbar at the top of the window. But...

How can I take a screenshot of website with Perl?

Possible Duplicate: How can I take screenshots with Perl? How can I take a screenshot from a site (in batch mode) using Perl? I.e. solution should produce image file (say .png) given an URL. It would be nice, if no X Window system will be required for solution to work. ...

Java Robot class and UAC

I am using the Java Robot class to take screenshots, my problem is that in W7 when the UAC dialog is shown (i right click on any application and select run as Admin) it will not appear in the screen shot or the whole screen is just black. Running my application with admin rights or as a service does not solve the problem. Please, does an...

[Air] Take screenshot of web site

Within an Air application, can I take a screenshot of a website WITHOUT rendering it visible to the user? If yes, is it limited to the resolution of the user's desktop? ...

How do I use python-webkit2png to take many screenshots at the same time?

I've got thousands of urls from many hosts I need to screenshot. I can use the lib fine from the command line, but how can I integrate it into my code so I can take multiple screenshots simultaneously? I think it's something to do with xvfb as with the answer to this question: http://stackoverflow.com/questions/1747022/how-to-kill-hea...

How to take a screen shot of an app (within an app)? (iPhone)

So what if I want to make an app where you can take a screen shot within the app itself. How would I do that? So for example the users click a UIButton and it takes a picture of the screen. ...