active questions tagged screenshot - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T17:24:29Zhttp://stackoverflow.com/feeds/tag/screenshothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1841534/silverlight-4-screen-capture0Silverlight 4 Screen Capturerandomsolutions2009-12-03T17:30:14Z2009-12-03T17:30:14Z
<p>I'm writing a timesheet helper utility in Silverlight 4. This will be a trusted out of browser application that will periodically ask the user (with a SL4 Notification Window) what they have been working on. What I'd like to do is have it capture images of their desktop (or better yet, active window) from time to time in order to remind them of what they have been working on since they last submitted their status report. Is this idea even possible? Do I need to use COM? If so, what COM component would I use?</p>
http://stackoverflow.com/questions/1835925/asp-net-activex-silverlight-screen-capture0ASP.NET/ActiveX/Silverlight Screen CaptureBenny2009-12-02T21:25:18Z2009-12-02T21:44:46Z
<p>I need a way to capture the screen within a web application in any way possible. Is there such a way without installing other tools like SnagIt? Can I use Win32 DllImports within an ActiveX component and do it that way?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1827280/capture-the-preview-of-a-uiimagepickercontroller0Capture the preview of a UIImagePickerControllerDimitris2009-12-01T16:25:44Z2009-12-01T16:25:44Z
<p>This has been asked many times. But most answers are not applicable to the latest OS (3.0+) or they are "Apple will reject it".</p>
<p>What I need is to programmatically grab the image displayed in the preview of the UIImagePickerController without having the user take a photo and use the image - what I actually need is to get a screenshot of my app, which contains the camera in the background and other stuff on the foreground.</p>
<p>I have tried several methods, with the latest being: iterate through all the subviews of the UIImagePickerController.view and save them as images using the <code>[view.layer renderInContext:]</code> method. With this method, I can actually get all the controller's assets (the buttons etc) but I can never see the actual preview. Has anyone figured a way to do this in 3.0+ ?</p>
http://stackoverflow.com/questions/1043880/net-browser-screen-capture-utility0.Net browser screen capture utilityZeon2009-06-25T13:20:25Z2009-11-27T18:34:09Z
<p>Good morning,</p>
<p>I am looking for a good .NET based screen capture utility. It would need be able to capture secure pages (https). It would be preferable it would capture Flash/ActiveX.</p>
<p>Thanks,
-Z</p>
http://stackoverflow.com/questions/970025/open-eml-file-in-any-mail-client-and-take-screenshot0Open eml file in any mail client and take screenshotĊ½eljko Filipin2009-06-09T13:18:21Z2009-11-27T14:42:13Z
<p>I perform a lot of tests that create e-mail messages. I store each message in separate eml file. (I can change file extension if needed.)</p>
<p>I would like to open each file in any mail client and take a screen shot, so I could visually inspect e-mails later.</p>
<p>The idea is that I could use a image viewing application to look at several screenshots in the same time, so I could visually compare them (after each test run).</p>
<p>I have access to Windows, Mac and Linux machines. I would prefer if the solution is in Ruby, but that is not required.</p>
<p>I am searching the web and this site, but no luck so far. I will post the solution in answer if I find it.</p>
http://stackoverflow.com/questions/1586592/disabling-iphone-screenshot-feature2Disabling iPhone screenshot featureArjent2009-10-19T01:32:30Z2009-11-27T10:21:32Z
<p>I'm working on an enterprise iPhone application for a client, the issue at hand is customer information will show up on the phone. My client is worried that the information could be caught using the iphone screen capture feature (home + power button), then emailed or synced from the phone. Is there any way to disable the screen capture feature? Can this be done programatically or is is possible through a configuration profile?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1803498/screenshot-of-window0Screenshot of windoweWolf2009-11-26T12:48:18Z2009-11-26T16:29:44Z
<p>Hi!</p>
<p>I'm trying to take screenshots of all open windows, also the minimized ones. Currently I'm using this code:
<a href="http://www.developerfusion.com/code/4630/capture-a-screen-shot/" rel="nofollow">http://www.developerfusion.com/code/4630/capture-a-screen-shot/</a></p>
<p>But it doesn't work for minimized windows and the areas where there is a Glass effect since Vista like the explorer title bar are black. Can anyone help me out?</p>
<p>My objective is to create something similar to Flip 3D; it would be great if someone also knew something about how to create a live preview.</p>
<p>Thanks, eWolf</p>
http://stackoverflow.com/questions/997175/how-can-i-take-a-screenshot-and-save-it-as-jpeg-on-windows4How can I take a screenshot and save it as JPEG on Windows?wonderer2009-06-15T16:53:41Z2009-11-26T14:49:09Z
<p>I'm trying to find a (somewhat) easy way to take a screenshot on window and save the resulting HBITMAP as a JPEG. The tricky part here is that since the code is in C I can't use GDI+ and since the code is a module for a bigger program I can't neither use an external lib (like libjpeg).</p>
<p>This code takes a screenshot and returns a HBITMAP. Saving that bitmap into a file is easy. the problem is that the bitmap is 2 or 3mb.</p>
<pre><code>HDC hDCMem = CreateCompatibleDC(NULL);
HBITMAP hBmp;
RECT rect;
HDC hDC;
HGDIOBJ hOld;
GetWindowRect(hWnd, & rect);
hBmp = NULL;
{
hDC = GetDC(hWnd);
hBmp = CreateCompatibleBitmap(hDC, rect.right - rect.left, rect.bottom - rect.top);
ReleaseDC(hWnd, hDC);
}
hOld = SelectObject(hDCMem, hBmp);
SendMessage(hWnd, WM_PRINT, (WPARAM) hDCMem, PRF_CHILDREN | PRF_CLIENT | PRF_ERASEBKGND | PRF_NONCLIENT | PRF_OWNED);
SelectObject(hDCMem, hOld);
DeleteObject(hDCMem);
return hBmp;
</code></pre>
<p>any ideas on how to do this?
thanks so much, any help is appreciated</p>
<p>EDIT:
Since we went in the direction of GDI+ I thought I'd post the code iv C++ that can take the screenshot and convert it to a JPEG using GDI+. If anyone knows how to achieve this using the FLAT GDI+ i'd appreciate the help.
Code:</p>
<pre><code> #include <windows.h>
#include <stdio.h>
#include <gdiplus.h>
using namespace Gdiplus;
int GetEncoderClsid(WCHAR *format, CLSID *pClsid)
{
unsigned int num = 0, size = 0;
GetImageEncodersSize(&num, &size);
if(size == 0) return -1;
ImageCodecInfo *pImageCodecInfo = (ImageCodecInfo *)(malloc(size));
if(pImageCodecInfo == NULL) return -1;
GetImageEncoders(num, size, pImageCodecInfo);
for(unsigned int j = 0; j < num; ++j)
{
if(wcscmp(pImageCodecInfo[j].MimeType, format) == 0){
*pClsid = pImageCodecInfo[j].Clsid;
free(pImageCodecInfo);
return j;
}
}
free(pImageCodecInfo);
return -1;
}
int GetScreeny(LPWSTR lpszFilename, ULONG uQuality) // by Napalm
{
ULONG_PTR gdiplusToken;
GdiplusStartupInput gdiplusStartupInput;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
HWND hMyWnd = GetForegroundWindow(); // get my own window
RECT r; // the area we are going to capture
int w, h; // the width and height of the area
HDC dc; // the container for the area
int nBPP;
HDC hdcCapture;
LPBYTE lpCapture;
int nCapture;
int iRes;
CLSID imageCLSID;
Bitmap *pScreenShot;
HGLOBAL hMem;
int result;
// get the area of my application's window
//GetClientRect(hMyWnd, &r);
GetWindowRect(hMyWnd, &r);
dc = GetWindowDC(hMyWnd);// GetDC(hMyWnd) ;
w = r.right - r.left;
h = r.bottom - r.top;
nBPP = GetDeviceCaps(dc, BITSPIXEL);
hdcCapture = CreateCompatibleDC(dc);
// create the buffer for the screenshot
BITMAPINFO bmiCapture = {
sizeof(BITMAPINFOHEADER), w, -h, 1, nBPP, BI_RGB, 0, 0, 0, 0, 0,
};
// create a container and take the screenshot
HBITMAP hbmCapture = CreateDIBSection(dc, &bmiCapture,
DIB_PAL_COLORS, (LPVOID *)&lpCapture, NULL, 0);
// failed to take it
if(!hbmCapture)
{
DeleteDC(hdcCapture);
DeleteDC(dc);
GdiplusShutdown(gdiplusToken);
printf("failed to take the screenshot. err: %d\n", GetLastError());
return 0;
}
// copy the screenshot buffer
nCapture = SaveDC(hdcCapture);
SelectObject(hdcCapture, hbmCapture);
BitBlt(hdcCapture, 0, 0, w, h, dc, 0, 0, SRCCOPY);
RestoreDC(hdcCapture, nCapture);
DeleteDC(hdcCapture);
DeleteDC(dc);
// save the buffer to a file
pScreenShot = new Bitmap(hbmCapture, (HPALETTE)NULL);
EncoderParameters encoderParams;
encoderParams.Count = 1;
encoderParams.Parameter[0].NumberOfValues = 1;
encoderParams.Parameter[0].Guid = EncoderQuality;
encoderParams.Parameter[0].Type = EncoderParameterValueTypeLong;
encoderParams.Parameter[0].Value = &uQuality;
GetEncoderClsid(L"image/jpeg", &imageCLSID);
iRes = (pScreenShot->Save(lpszFilename, &imageCLSID, &encoderParams) == Ok);
delete pScreenShot;
DeleteObject(hbmCapture);
GdiplusShutdown(gdiplusToken);
return iRes;
}
</code></pre>
http://stackoverflow.com/questions/1801919/easy-way-to-upload-a-screenshot-from-clipboard-through-a-browser-form1Easy way to upload a screenshot (from clipboard) through a browser formAlphaOne2009-11-26T06:40:36Z2009-11-26T06:49:21Z
<p>Hi,</p>
<p>i am pretty sure, that i've seen such a feature on a website somewhere in the web.</p>
<p>i want to give the user a form, where he can input some data and attach the current clipboard content (very likely a screenshot) to the form and then submit it as an image file.</p>
<p>after all, i don't want the user to go through all the hassle: take a screenshot, open his favorite image processing app, paste the screenshot, save it as a file, then go to my form to click a browse button and eventually search for the saved file.</p>
<p>there has to be an easier method, with all the ajax-jquery-web2.0-stuff.</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/302924/url-coordinate-based-screen-capturing-tool1URL-&coordinate based screen capturing tool Enrico Stahn2008-11-19T18:44:53Z2009-11-23T20:00:04Z
<p>Hello,</p>
<p>I'm searching for a screen capturing tool which captures areas of an website/web-application based on the url. The very best for me would be an firefox/ie addon with an API accessible via javascript. </p>
<p>Example:<br />
URL, Coordinates, Filename</p>
<p><code>http://foo.com/project/show/33; rectangle:10,10,50,50; myapp-area1.jpg</code><br />
<code>http://foo.com/project/show/33; rectangle:100,100,150,150; myapp-area2.jpg</code></p>
http://stackoverflow.com/questions/1774222/taking-screenshot-of-a-specific-window-c-qt0Taking screenshot of a specific window - C++ / QtSwitch2009-11-21T01:43:04Z2009-11-23T08:41:46Z
<p>In Qt, how do I take a screenshot of a specific window (i.e. suppose I had Notepad up and I wanted to take a screenshot of the window titled "Untitled - Notepad")?
In their screenshot example code, they show how to take a screenshot of the entire desktop:</p>
<pre><code>originalPixmap = QPixmap::grabWindow(QApplication::desktop()->winId());
</code></pre>
<p>How would I get the winId() for a specific window (assuming I knew the window's title) in Qt?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1777033/desktop-screenshot-in-wpf1Desktop screenshot in WPFluvieere2009-11-21T22:40:05Z2009-11-22T14:45:37Z
<p>How can I take a screenshot of the desktop in WPF? Preferably with the mouse cursor showing.</p>
http://stackoverflow.com/questions/1775196/take-screen-shot-in-xna3Take screen shot in XNAAlon2009-11-21T11:17:29Z2009-11-21T12:06:32Z
<p>How can I take a screen shot of the screen in XNA? Is it possible without <code>System.Drawing.Graphics.CopyFromScreen</code> or Win32API? If it's not possible, Is there any way to draw a <code>System.Drawing.Bitmap</code> to the game?</p>
<p>I want that it'll take a screen screenshot, then load the game in full screen mode, and then print the screenshot.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1747022/how-to-kill-headless-x-server-started-via-python1How to kill headless X server started via Python?uswaretech2009-11-17T06:46:46Z2009-11-18T11:41:38Z
<p>I want to get screenshots of a webpage in Python. For this I am using <a href="http://github.com/AdamN/python-webkit2png/" rel="nofollow">http://github.com/AdamN/python-webkit2png/</a> .</p>
<pre><code> newArgs = ["xvfb-run", "--server-args=-screen 0, 640x480x24", sys.argv[0]]
for i in range(1, len(sys.argv)):
if sys.argv[i] not in ["-x", "--xvfb"]:
newArgs.append(sys.argv[i])
logging.debug("Executing %s" % " ".join(newArgs))
os.execvp(newArgs[0], newArgs)
</code></pre>
<p>Basically calls xvfb-run with the correct args. But <code>man xvfb</code> says:</p>
<p><code>Note that the demo X clients used in the above examples will not exit on their own, so they will have to be killed before xvfb-run will exit.</code></p>
<p>So that means that this script will <????> if this whole thing is in a loop, (To get multiple screenshots) unless the X server is killed. How can I do that? </p>
http://stackoverflow.com/questions/1742075/selenium-rc-sending-blank-screenshots-through-winxp-winserver0Selenium RC sending blank screenshots through (winxp/winserver)pgn2009-11-16T13:03:10Z2009-11-16T23:26:06Z
<p>Hello everyone.</p>
<p>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 server, on the same local network as the remote-controlled windowses).</p>
<p>Everything has worked out great so far, except i am unable to get a screenshot from selenium RC - they are <strong>all blank</strong> (gray) after base64_decode(); (without that, they dont even open). </p>
<p>Despite os x preview displays them as gray, i'm pretty sure they are actually transparent or have some kind of other corruption because Photoshop wont open them at all. (and they weigh 0.7k) The unix "file" command however recognizes them correctly as "PNG image, 1440 x 900, 8-bit/color RGB, non-interlaced" - 1440 x 900 is the resolution of my Mac, connected to the windows systems through remote desktop. </p>
<p>I'm running the selenium rc directly (ie java -jar selenium-server.jar), not as a service. The symptoms are the same accross all my windows test systems.</p>
<p>My Selenium version is 1.0.1, here's the snippet that tries to get the screenshot:</p>
<pre>
$this->selenium->windowMaximize();
$screenshot = $this->selenium->captureScreenshotToString();
</pre>
<p>I'm using the latest Testing_Selenium pear package.
I realize there is a question here dealing with a similar issue, but i'm not using a service wrapper nor i can afford to introduce this complexity (but do let me know if you think that's a mistake)</p>
<p>thanks & regards,
Andras</p>
<p>ps: i'm cross posting this to several forums in a desperate attempt to get some imput - apologies if that upsets you :-)</p>
<p>edit: selenium rc console says</p>
<p>16:38:24.562 INFO - Got result: [base64 encoded PNG] on session a5304a287eb24402
8c8c843b294bf98f
java.net.SocketException: Software caused connection abort: socket write error
at java.net.SocketOutputStream.socketWrite0(Native Method)
at java.net.SocketOutputStream.socketWrite(Unknown Source)
at java.net.SocketOutputStream.write(Unknown Source)
at org.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStrea
m.java:151)
at org.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java
:142)
at org.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423)
at org.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414)
at org.openqa.selenium.server.SeleniumDriverResourceHandler.handleComman
dRequest(SeleniumDriverResourceHandler.java:370)
at org.openqa.selenium.server.SeleniumDriverResourceHandler.handle(Selen
iumDriverResourceHandler.java:125)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1530)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1482)
at org.mortbay.http.HttpServer.service(HttpServer.java:909)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:820)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:837)
at org.mortbay.http.SocketListener.handleConnection(SocketListener.java:
245)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)</p>
<p>for all screen captures.</p>
http://stackoverflow.com/questions/796489/iphone-facebook-icon-in-screen-grab-for-submission0iphone facebook icon in screen grab for submissionkeuminotti2009-04-28T06:40:01Z2009-11-15T17:32:38Z
<p>you think putting a Facebook icon in one of your screen grab list for submission would violate the apple sdk?</p>
http://stackoverflow.com/questions/1291110/capture-iphone-screen-with-status-bar-included1Capture iPhone screen with status bar included?Josh2009-08-17T23:58:29Z2009-11-15T17:28:45Z
<p>I am looking for a way to capture a screenshot on the iPhone with the top status bar included, I am currently using the following code:</p>
<pre><code> UIGraphicsBeginImageContext(self.view.bounds.size); //self.view.window.frame.size
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
</code></pre>
<p>The above code sucessfully takes a screenshot of the iPhone UIView but does not include the top status bar (In its place is just a blank 20px space).</p>
http://stackoverflow.com/questions/1736287/capturing-a-window-with-wpf0Capturing a window with WPFdirectedition2009-11-15T01:40:01Z2009-11-15T02:00:29Z
<p>With Windows Presentation Foundation, if I have an HWND, how can I capture it's window as an image that I can manipulate and display?</p>
http://stackoverflow.com/questions/1732935/pyqt-display-fullscreen-image0PyQt display fullscreen imagedirectedition2009-11-14T01:36:10Z2009-11-14T04:16:47Z
<p>I'm using PyQt to capture my screen with QPixmap.grabWindow(QApplication.desktop().winId()) and I was wondering if there was a way I could display my screengrab fullscreen (no window borders, etc.) I'm trying to find a way to desaturate my display with PyQt</p>
http://stackoverflow.com/questions/756044/take-screenshot-of-any-external-application-using-c0Take screenshot of any external application using C#Erich Mirabal2009-04-16T13:12:23Z2009-11-13T22:12:15Z
<p>We have a C# (WPF) application in which we want to take a screenshot of an arbitrary application launched by us (i.e. so we have a reference to the Process we started).
The application may be minimized or behind other windows but we still only want the image of the individual application, not overlapping pixels. </p>
<p>I know the typical P/Invoke solutions using BitBlt or <a href="http://delphi.about.com/od/delphitips2008/qt/print%5Fwindow.htm" rel="nofollow">PrintWindow</a> work most of the time, but those fail (I only get black/transparent pixels) when dealing with an DirectX or OpenGL application that draws directly to the graphics device. I have found this <a href="http://spazzarama.wordpress.com/2009/02/07/screencapture-with-direct3d/" rel="nofollow">article</a> on taking a screenshot of a Direct3D app from C#, so I think I have that case covered.</p>
<p>So my question is this:</p>
<ol>
<li>How would I do this for an OpenGL application?</li>
<li>What is the easiest way to determine the appropriate method to use (PW/DX/GL)?</li>
<li>Is there a single universal way of doing this?</li>
</ol>
<p>For #2, am I relegated to inspecting the modules loaded by the executable and seeing if an DirectX or OpenGL DLL/Assembly is loaded?</p>
<p>This only has to run on Windows XP (not cross-platform and not going to Vista/7 anytime soon if ever for this application).</p>
http://stackoverflow.com/questions/1712173/android-can-i-take-a-screen-capture-from-an-app0Android: Can I take a screen capture from an app?Legend2009-11-11T00:14:53Z2009-11-11T07:58:31Z
<p>I was wondering if there is a way to take a screenshot of the current screen inside the mobile phone using a service (I know how to do it through DDMS though)</p>
http://stackoverflow.com/questions/1672906/how-to-post-a-screen-shot-in-stack-overflow0How to post a Screen Shot in Stack Overflow? [closed]suse2009-11-04T10:27:11Z2009-11-04T10:30:44Z
<p>Please tell me how to post a screen shot in a question here on Stack Overflow?</p>
http://stackoverflow.com/questions/713938/how-can-i-generate-a-screenshot-of-a-webpage-using-a-server-side-script6How can I generate a screenshot of a webpage using a server-side script?Colargol2009-04-03T13:35:52Z2009-11-02T00:10:04Z
<p>I need a server-side script (PHP, Python) to capture a webpage to a PNG, JPG, Tiff, GIF image and resize them to a thumbnail.</p>
<p>What is the best way to accomplish this?</p>
<h3>See also:</h3>
<blockquote>
<ul>
<li><a href="http://stackoverflow.com/questions/686858/web-page-screenshots-with-php">Web Page Screenshots with PHP?</a></li>
<li><a href="http://stackoverflow.com/questions/627301/how-can-i-take-a-screenshot-of-a-website-with-php-and-gd">How can I take a screenshot of a website with PHP and GD?</a></li>
<li><a href="http://stackoverflow.com/questions/443837">How might I obtain a Snapshot or Thumbnail of a web page using PHP?</a></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/26183/screenshot-taking-tools28Screenshot Taking ToolsKrishna Kumar2008-08-25T15:05:39Z2009-11-01T14:40:17Z
<p>What are the good screenshot taking tools available (open source and commercial)?</p>
http://stackoverflow.com/questions/1651574/how-do-i-capture-a-web-applications-screen-to-attach-to-an-e-mail-on-error0How do I capture a web applications screen to attach to an e-mail on error?swolff19782009-10-30T18:37:40Z2009-10-30T19:09:54Z
<p>I am working on a web application and we would like to capture the screen (either the applications current screen or the whole screen) and attach this to an e-mail that is automatically generated for error messages. I've seen a few posts about how to do this in a winform app, but nothing really on how to do it in a web app. Is it the same process? Any sites that have helpful steps on how to achieve this in a web app are appreciated.</p>
<p>EDIT:
Is it possible for us to achieve something similar with screen scraping? I'm not too familiar with what all can be done with a screen scrape so any suggestions are also welcomed.</p>
http://stackoverflow.com/questions/1568788/fastest-way-to-take-a-screenshot-in-flex-31Fastest way to take a Screenshot in Flex 3?Daniel2009-10-14T20:28:56Z2009-10-29T20:43:26Z
<p>What's the fastest way to get a screen capture in flex? I am currently using: (I currently encode it to Base64 for upload to a webserver, but this is not necessarily required. All I want is an image file to appear on the server).</p>
<pre><code> ImageSnapshot.defaultEncoder = JPEGEncoder;
var imageSnap:ImageSnapshot = ImageSnapshot.captureImage(<< flex component >>);
var screenshotData:String = ImageSnapshot.encodeImageAsBase64(imageSnap);
</code></pre>
<p>It currently holds up the entire application for almost a second as it actually captures the image. The Base64 encoding happens essentially instantaneously.</p>
http://stackoverflow.com/questions/1597399/is-it-possible-to-automate-taking-a-screenshot-of-a-portion-of-a-web-page-e-g2Is it possible to automate taking a screenshot of a portion of a Web page (e.g., denoted by a CSS selector or HTML parent element)?Bungle2009-10-20T21:23:38Z2009-10-20T22:25:44Z
<p>I'm not sure if the title conveys the best approach to my problem, so let me step back a little bit.</p>
<p>My company is setting up an advertisement affiliate program. We have a widget that will soon be displayed on numerous Web pages, and this widget will contain an advertisement block that will show various ads from our affiliate retailers.</p>
<p>We need a solution that will allow us to quickly (and using as much automation as possible) create thousands of ads for different products. Unfortunately, our ad management service (Google Ad Manager) only accepts image-based ad creatives (it actually accepts Flash, but we don't want to use that). An ad management service that accepts HTML ads might also be a viable solution, if anyone has any suggestions.</p>
<p>Coming from the Web development world, our initial idea was to create a browser-based UI that allows a non-technical person to enter all of the content for an ad (product name, MSRP, sale price, product review, etc.) and its dimensions. Using this information, the application would lay out the ad in a "preview" <div> next to the input form to enable the user to see and update the ad's layout and content. They could then use this HTML preview to adjust the text, product image size, etc., to end up with an acceptable ad layout.</p>
<p>That all seems achievable enough for us. The tricky part is figuring out an efficient and scalable way to turn that HTML preview that we can see in the browser into an image of reasonably high quality. We could take a screenshot of the page when each ad is complete, but that would involve several additional steps - copying the screenshot into an image editor, cropping, saving, and uploading it to our server so that we can point Google Ad Manager to the URL of the image. Multiplying these steps by thousands and thousands of ads, this would make the process more cumbersome than we feel it needs to be.</p>
<p>So, I'm ultimately looking for a method - be it a browser plugin, a bookmarklet, a method for doing this server-side or client-side with Ruby, Java, or JavaScript, etc. - to turn what we see in the browser window into an image that lives on our server in as few steps as is reasonably possible.</p>
<p>However it works, it seems that whatever takes the screenshot will have to either understand the notion of HTML/CSS rendering to know where the extremities of the ad "image" lie (like the dimensions and position of its parent HTML element), or be able to crop out just the ad square against the blank white page background (I'm thinking along the lines of a Photoshop Action using the magic wand tool).</p>
<p>If anyone has any ideas or suggestions to share, I'd very much appreciate it!</p>
http://stackoverflow.com/questions/1595801/cannot-capture-screen0Cannot capture screenSerhat Özgel2009-10-20T16:18:45Z2009-10-20T16:20:14Z
<p>I have a windows service running on a client machine. I need to capture the screen of the client and sent it to server over the remoting. When I run the exe file, it can capture the screen and send it to the server fine. But when I run it as a service, it logs the following error:</p>
<p>"The handle is invalid."</p>
<p>The service's "interact with desktop" checkbox is checked. The code I am using for screenshot is:</p>
<pre><code>Image bmpScreenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb);
Graphics gfxScreenshot = Graphics.FromImage(bmpScreenshot);
gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
return bmpScreenshot;
</code></pre>
<p>What may be the cause and how can I resolve this?</p>
http://stackoverflow.com/questions/141769/what-is-the-best-tool-for-creating-user-guides-with-screenshots-on-windows4What is the best tool for creating user guides with screenshots on Windows?Luke2008-09-26T20:29:24Z2009-10-20T05:43:44Z
<p>I need to write some guides for my development team on how to get some software up and running and would like to include partial screenshots. Are there any tools that are particularly good at this? Word is <em>almost</em> there in that I can easily paste screenshots inline with text, but I need the ability to crop the images and Word image manipulation is really painful. I'm somewhat biased against screencasting as I hate having to go back to a screencast for reference and sit through a bunch of talking. Are MS OneNote or LiveWriter any good at this?</p>
<p><strong>Edit:</strong> Going to use the free <a href="http://www.codeplex.com/cropper" rel="nofollow">Cropper</a> tool (looks pretty polished and allows you to do screenshot and crop in a single step) along with MS Word. Couldn't justify paying for more software but SnagIt looks really good if you're going to spend money.</p>
<p><strong>Edit:</strong> I didn't intend to duplicate <a href="http://stackoverflow.com/questions/26183/screenshot-taking-tools">this question</a> but the accepted answer there covers the options presented here pretty well.</p>
http://stackoverflow.com/questions/1563254/iphone-take-screenshot-of-uiimagepickercontroller-view-always-black-if-tab-app0iPhone Take Screenshot of UIImagePickerController View - Always black if TAB appJot2009-10-13T22:15:20Z2009-10-17T21:18:42Z
<p>Hello,</p>
<p>Attempting to take a screenshot when the user is in Camera mode and user hits take picture. I have an application with several tabs. In one of them the user launches the Camera. I use CameraOverViewController to make a custom button to take a picture [picker takePicture]. When this picture is taken I also a screen shot of the picture using standard methods. This all works fine in a test app with no tabs, as soon as I introduce tabs it just returns a black square. I realize its likely to do with getting the right VIEW, I can't figure out which view to get.</p>
<pre><code> // the view loaded in the tab view
@interface CameraTestViewController : UIViewController |UIImagePickerControllerDelegate, UINavigationControllerDelegate|
UIImagePickerController *picker
.m
- (void) setUpCamera : (id) sender {
picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
picker.allowsEditing = NO;
picker.showsCameraControls = NO;
picker.wantsFullScreenLayout = YES;
picker.cameraViewTransform = CGAffineTransformScale(picker.cameraViewTransform, CAMERA_SCALAR, CAMERA_SCALAR);
CameraOverViewController *createOverlay = [[CameraOverViewController alloc] initWithNibName:@"CameraOverViewController" bundle:nil];
[createOverlay mainView:self];
[picker setCameraOverlayView:createOverlay.view];
[self presentModalViewController:picker animated:YES];
[picker release];
}
- (void) snapThePicture {
[picker takePicture];
}
// TAKE SCREEN SHOT AS WELL. WORKS WITH NO TABS
- (void)imagePickerController:(UIImagePickerController *)pickerHere didFinishPickingMediaWithInfo:(NSDictionary *)info {
// tried many, many things. self.view.layer, etc
CGRect screenRect = CGRectMake(0, 0, 320, 480);
UIGraphicsBeginImageContext(screenRect.size);
[self.picker.view.layer renderInContext:UIGraphicsGetCurrentContext()];
// UIIMAGE ALWAYS A BLACK RECTANGLE OF RIGHT SIZE. WOULD WORK IF NOT IN TAB VIEW
UIImage *screenImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
</code></pre>
<p>Any help is appreciated.</p>
<p>thanks.</p>