Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wan to take a screenshot from an entire web page. But at a higher resolution as my machine is capable of.

Is this somehow possible?

(my goal is to print a web page that only exists on my local drive, an edited website for a birthday present).

I cannot print the page directly to eg pdf, as all the markup, styles and images will be lost then.

Is there any possibility?

share|improve this question
Alt + Print Scrn – Jawad Feb 12 at 20:51
Did you read my comment. This would give me 1. only a portion of the screen (which I do not want), and only at the resolution of my machine (which I do not want). – membersound Feb 12 at 20:52
please try snipping tool. windows.microsoft.com/is-IS/windows7/products/features/… – AshReva Feb 12 at 20:53
screenshot + entire web page + higher resolution ? - screen size? – Jawad Feb 12 at 20:55
A basic solution would be to set your screen resolution as high as possible. Then zoom in on the web page so maybe a quarter is visible, then F12 and print screen. Repeat the process and stitch together in paint easily. Simple solution but I think it will work. – Martyn0627 Feb 12 at 20:56

5 Answers

up vote 0 down vote accepted

I am going to share a method that I use quite often :

If you have a monitor, that can be rotated to vertical view, you can try that and then use print screen. If captured resolution is still not enough, take a couple of screen shots and merge them with photo editing software.

This method works well when dealing with standart width websites and websites that don't use infinite scroll.

share|improve this answer

http://phantomjs.org/

I use this to generate raster PNG images of the rendered pages on my site using resolutions much larger than my screen), it's not hard to use (console mode too) and you can specify image properties so you can run this from a machine with no monitor and it will work just fine.

See examples: https://github.com/ariya/phantomjs/wiki/Examples (especially the Rendering/rasterization section).

share|improve this answer
Yup. That nails it. +1 – Jawad Feb 12 at 20:57
How does one see example images at those sites? I only see lots of JS code. – isherwood Feb 12 at 21:04
You run the JS script (see examples) and it will go to the site, render it and write an image. It's a browser without a display in essence. – Alex Chacha Feb 12 at 21:10
This may be a little overkill if you just want to capture an image of a web page. PhantomJS is originally intended for functional testing, rendering an image is just one of the functionalities. – Naoise Golden Feb 14 at 11:19

I have created a proof of concept of this service online at

http://screenshot.wutils.com/

Simple web service with IE as render engine, zoom functionality and max resolution about 40M Pixels.

share|improve this answer

I am quite satisfied with Awesome Screenshot plugin for Chrome.

Specs:

Capture

  • Capture visible part
  • Capture any region
  • Capture the whole page
  • Crop any portion and show crop dimension

Annotate

  • Annotate it with rectangles, circles, arrows, lines and text
  • Erase the sensitive information with blur tool

Share

  • One-click Upload the screenshot to awesomescreenshot.com and get a sharable link
  • Hard to guess URL to allow private sharing
  • Share the link to twitter, facebook, email etc.
share|improve this answer
Get in you answer ASAP. Than enjoy the leisure of editing it. – Jawad Feb 12 at 20:59
1  
How does this get high-resolution images? – isherwood Feb 12 at 21:01
@isherwood define high-resolution images in this use case. – Naoise Golden Feb 13 at 11:52
The OP already did: "...a higher resolution as my machine is capable of". – isherwood Feb 13 at 14:07
So that means on screen pixel equates to one image pixel, it's exactly what the plugin does. Have you tried capturing a whole page? Unless it's trying to render some 2x or vectorial version, I don't get your (negative) point. – Naoise Golden Feb 13 at 15:00

You can use GrabzIt to do this they support PDF and image screenshots and are all in high definition.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.