Questions tagged [webpage-screenshot]

A screen dump, screen capture (or screencap), screenshot (or screen shot), screengrab (or screen grab), or print screen is an image taken by the computer user to record the visible items displayed on the monitor, television, or another visual output device.

Screenshots can be used to demonstrate a program, a particular problem a user might be having, or generally when display output needs to be shown to others or archived. For example, after being emailed a screenshot, a Web page author might be surprised to see how his page looks on a different Web browser and can take corrective action.

241 questions
2
votes
1 answer

SVG support for html2canvas

I was trying to capture a screenshot of a div containing svg elemens along with other elements using html2canvas. I found 2 versions of html2canvas Version 1 Version 2 Whats the difference between them, and does any of hem support svg elements and…
Varun Sharma
  • 1,602
  • 1
  • 13
  • 37
2
votes
2 answers

Capturing page after all content have asynchronously loaded

I am new to PhantomJS and trying to capture the homepage of Trade Me. Here's my code so far: var page = require('webpage').create(); page.open('http://trademe.co.nz', function () { // Checks for bottom div and scrolls down from time to time …
codedog
  • 2,488
  • 9
  • 38
  • 67
2
votes
1 answer

Watir - Screenshot for IE is not proper

I am using Watir with Ruby. I need to save screenshots. but it is improper screenshot. Could you please help me out. This is my code. require 'watir' browser = Watir::Browser.start…
2
votes
1 answer

Take screenshot of host app using iOS share/action extensions?

I will like to know how to take a screenshot of the iOS host app with the use of a share/action extension. My use case is as follows: use the Safari browser to access a webpage (https such as gmail) tap on the Share button and select the…
2
votes
1 answer

Programmatic Website Screen Shots

I'm checking into the available methods for programmatically taking screenshots of an arbitrary website. For…
Ian
  • 11,920
  • 27
  • 61
  • 77
2
votes
0 answers

how would you take a screenshot in a iOS Safari Extension?

Building a Safari (desktop) extension, one have access to screenshot from tab.visibleContentsAsDataURL(); it works brilliantly, lightning fast. Something like this: Safari Extension Taking Screenshot On iOS, we tried: Html2Canvas (it didn't produce…
2
votes
2 answers

HTML2canvas and Canvas2image, downloaded screenshot doesn't show my HTML images

I've been working on a HTML page that I want to convert into an image. I have been using the html2canvas and canvas2image scripts and taken this code http://jsfiddle.net/8ypxW/3/ here that has allowed me to create a button that will take a…
user3423339
  • 41
  • 1
  • 1
  • 5
2
votes
1 answer

Using chrome.tabs.captureVisibleTab() from DevTools console

I'm curious as to whether it is possible to take a screenshot directly from Chrome's DevTools using chrome.tabs.captureVisibleTab (be it from the console or from within a snippet), without going through the process of creating an extension. Is this…
Julian Laval
  • 1,210
  • 4
  • 17
  • 34
2
votes
2 answers

Is it possible to capture a screenshot of a whole webpage in the iOS Simulator?

Currently i am making "traditional" screenshots and combine them using a graphics editor to show the full webpage at once. Is there any more efficient way of making screenshots of a full webpage, just as by using Awesome Screenshot for Google…
Julian Weimer
  • 2,605
  • 4
  • 22
  • 23
2
votes
6 answers

Screenshot of entire webpage (localhost)

I'm having a HTML file on my localhost and I want a screenshot of the entire page. Does anyone know some software that screenshots the entire page (localhost)? I found some plugins but they don't support localhost files.
jjj
  • 187
  • 1
  • 9
2
votes
1 answer

Taking a website snapshot with PHP

Hello folks and friends from SO! This is for the development of a web spider. We basically need to take a snapshot of a certain website. We would have the full URL, and as well the source code, returning from a cURL request. Since the HTML should be…
Chris Russo
  • 450
  • 1
  • 7
  • 21
2
votes
3 answers

Save HTML Canvas as an image without client browser

I generate an image on a few overlapping canvases when a page is loaded (without user-interaction), but that does take ~3 seconds to fully draw. I want to flatten these canvases, and convert this image to a PNG on the server, for use in thumbnail…
Crashthatch
  • 1,283
  • 2
  • 13
  • 20
2
votes
1 answer

WebBrowser control does not render some pages

I'm working on a application that hosts WebBrowser control and saves web page screenshots. (C#, VS2008, IE 9, Vista. all up to date. FEATURE_BROWSER_EMULATION is set to 0x2328) The application takes a list of urls and navigates to the urls one by…
Serkan Özkan
  • 377
  • 2
  • 10
2
votes
6 answers

Is it possible to take a screenshot of the rendered DOM on the server side?

In my web app, the user can create some HTML/CSS markup that is saved in my database. I would like to offer a 'thumbnail' for that markup, for example in the overview view. Since the thumbnail should be at around 200x200px, and the original markup…
Louis B.
  • 2,348
  • 1
  • 29
  • 51
1
vote
1 answer

Screenshots using Selenium-RC with JUnit, Java & Eclipse

I need to take screenshots in Selenium-RC (JUnit, Eclipse & Java). I want to take screenshots anywhere I want and not just on test failure. Thanks in advance.
hiteshmurkute
  • 11
  • 1
  • 2