Skip to content
Full Page Screenshot

Topics

Articles

Mostly troubleshooting. If a capture came back wrong, the explanation is probably here — and each piece is written from what the capture engine actually does rather than from general advice.

Screenshot resolution, pixel density and Retina displays

14 August 2026

On a Retina or high-DPI screen, the browser uses a devicePixelRatio greater than 1 (typically 2). This means every CSS pixel maps to multiple physical pixels, so a 1440px wide window produces a 2880px wide capture. The resulting image has double the linear resolution, four times the total pixels, and significantly larger file sizes. This higher resolution halves the maximum page height you can capture before hitting Chrome's 16,384px canvas limit.

Screenshotting a page with infinite scroll

7 August 2026

An infinite scroll page has no total height, so there is no complete version to capture. Scroll to the point you want the capture to end, wait for loading to stop, then start. You will get everything currently in the document, which is the only well-defined answer available.

How to take a full page screenshot in Safari on iPhone and Mac

4 August 2026

On iPhone and iPad, take a screenshot, tap the thumbnail, and choose the Full Page tab to save the whole webpage as a PDF. Safari on macOS has no equivalent: it ships no full page screenshot command, so the built-in route there is Command+P and Save as PDF, which prints the page rather than photographing it.

How to take a full page screenshot in Microsoft Edge

30 July 2026

To take an edge full page screenshot, press Ctrl+Shift+S to open Web Capture and select "Capture full page." Alternatively, use DevTools (F12) and run the command "Capture full size screenshot" via Ctrl+Shift+P. Because Edge is Chromium-based, you can also install extensions like Full Page Screenshot from the Chrome Web Store for more reliable results.

Capturing a page that is behind a login

28 July 2026

To capture a page behind a login, you must use a local browser extension or built-in tool that runs within your active browsing session. Remote rendering services cannot authenticate because they lack your cookies and credentials. Local capture ensures data never leaves your machine, but be aware that sensitive session tokens may appear in the final image if visible on screen.

Why your full page screenshot is cut off at the bottom

25 July 2026

A full page screenshot cut off at the bottom is almost always the browser image size limit being hit without being handled: past roughly 16,384 pixels the draw fails and you are handed an image that looks complete but is not. The other four causes are lazy content, infinite scroll, a nested scrolling panel, and the tab losing focus mid-capture.

Keeping cookie banners and popups out of your capture

22 July 2026

Any element visible on the screen becomes part of the image. To remove a cookie banner or popup, you must dismiss it manually before triggering the capture. If the banner reappears during a long scroll, disable automatic scrolling or delete the element directly in Chrome DevTools using the Elements panel before taking the shot.

Why images come out blank in a full page screenshot

16 July 2026

Images that load only when scrolled into view have not finished downloading and decoding by the time a fast capture passes them, so they are photographed as empty placeholders. Scrolling the page to the bottom once before capturing forces every image to request, which fixes it in nearly every case.

PNG, JPG or PDF: choosing a format for a webpage capture

8 July 2026

For webpage captures, PNG is the superior image format because it uses lossless compression that preserves sharp text, thin borders, and flat colours without introducing visual noise. JPG should be avoided for UI elements as its lossy compression creates visible artefacts around hard edges. If the goal is to share the page as a document rather than an image, use PDF, which Full Page Screenshot supports via A4, Letter, or fit-to-image exports.

What Chrome DevTools full page capture can and cannot do

6 July 2026

Chrome's Capture full size screenshot lives in the DevTools command menu: press F12, then Ctrl+Shift+P, then type the command. It works well on static pages. It does not neutralise sticky headers, does not wait for lazy images, cannot capture nested scroll containers, and truncates rather than splits past the image size limit.

When a full page screenshot is too large to use

28 June 2026

A full page capture of a long site at 2x display density routinely produces a 40 to 80 MB PNG, which exceeds the upload limit of most issue trackers and chat tools. The four fixes, in order of how much they cost you: export JPG instead, export PDF, zoom out before capturing, or crop to the part that matters.

How to blur sensitive information in a screenshot safely

25 June 2026

To properly hide personal data in a screenshot, you must use destructive redaction, not just a blur or black overlay. Blurs and rectangles leave the original pixels intact and recoverable. True redaction removes the pixel data entirely. You should perform this step using a dedicated editor like Full Page Screenshot's built-in tools before saving or sharing the file.

How to take a full page screenshot in Firefox

20 June 2026

Firefox captures a whole page natively: right-click an empty part of the page and choose Take Screenshot, or press Ctrl+Shift+S, then click Save full page. The preview offers Copy and Download only, with no editing tools, and very long or lazy-loading pages remain the cases where it falls short.

How to archive a webpage permanently for legal and research use

14 June 2026

To archive a webpage permanently, you must combine two distinct methods. First, use a capture tool like Full Page Screenshot to save an exact visual replica of your current view, including any logged-in content or dynamic state. Second, submit the URL to the Internet Archive's Wayback Machine via Save Page Now to get an independent third-party timestamp. A personal screenshot alone carries no external proof of time.

Why the header repeats down your full page screenshot

8 June 2026

A sticky or fixed header sits in the viewport at every scroll position, so it appears in every individual capture and ends up stamped down the joined image. The fix is to neutralise fixed and sticky positioning for the duration of the capture, which puts the header back in the document flow where it appears exactly once.

Why your screenshot came out in the wrong theme

5 June 2026

If your website screenshot captures in dark mode when you expected light mode (or vice versa), it is because the site respects the operating system's `prefers-color-scheme` media query rather than its own default styling. The browser injects the current OS theme setting into the page context during rendering. To fix this, you must temporarily change your OS display settings or use a browser profile configured for the desired theme before triggering the capture.

Capturing a page where the content scrolls inside a panel

27 May 2026

If a capture returns exactly one screenful, the page body probably does not scroll at all. Application layouts commonly pin the body to the viewport height and put the scrollbar on an inner element, so scrolling the window does nothing. The capture has to detect that element and scroll it instead.

Full page, scrolling and normal screenshots: the differences

21 May 2026

A normal screenshot captures the visible window. A scrolling screenshot describes the method: scroll, photograph each screenful, join them. A full page screenshot describes the result: one image containing the entire document. On desktop the last two usually mean the same thing, because scrolling is how a full page capture is produced.

Capture your first full page screenshot

Free, no account, and nothing leaves your computer.