Stitched Full-Page Capture
Overview
Use settled viewport screenshots instead of trusting one-shot browser fullPage captures. This is especially important for Framer pages and other lazy/scroll-animated sites where the MP4 can look correct while the tall screenshot is mostly blank.
Core Workflow
- Open the real page URL, not a marketplace thumbnail, cover image, remix page, or asset URL.
- Warm the page by scrolling from top to bottom once so lazy media and reveal sections mount.
- Return to the top.
- Scroll downward in viewport-sized or slightly-overlapping steps.
- Wait about 2 seconds after each scroll stop.
- Capture the settled viewport.
- Stitch the viewport captures vertically into one full-page image.
- Cut section crops from that stitched image, not from the native browser
fullPage screenshot.
- Validate the stitched image against the representative still, MP4, and motion frames.
Reject a full-page candidate when it has blank/gray/white bands, very low visual content, missing lazy-loaded sections, an extremely narrow content column, or obvious disagreement with the scroll video.
Script
For daily UI inspiration articles, use the helper script from this skill directory when available:
node <skills-root>/stitched-full-page-capture/scripts/stitch_full_page_capture.mjs \
--manifest articles/YYYY-MM-DD-ui-inspiration-capture/manifest.json
The script:
- reads
items[].pageUrl, fullPageImage, and sectionImages;
- opens each live page in Playwright Chromium;
- warms lazy content by scrolling once;
- captures settled viewport slices;
- stitches slices into
fullPageImage;
- regenerates each existing section crop from the stitched image;
- updates
manifest.json with fullPageCaptureMethod: "stitchedViewportScreenshots", viewport, step, segment count, and corrected crop coordinates.
Useful options:
--item 4 # repair only item 4, 1-based
--viewport 1440x1100 # default
--step 950 # default; use less than viewport height for overlap
--wait 2000 # ms to wait after each scroll stop
--quality 3 # ffmpeg JPEG quality, lower is better
Validation
After capture or repair:
- Inspect at least the page that was visibly wrong before.
- Confirm
sips -g pixelWidth -g pixelHeight full-page/*.jpg reports expected wide/tall dimensions.
- Confirm the full-page image is not mostly blank and includes lower-page content.
- Confirm section crop coordinates are contiguous and end at the full-page image height.
- Run the project’s normal checks, for example:
git diff --check -- articles/YYYY-MM-DD-ui-inspiration-capture/content.md articles/YYYY-MM-DD-ui-inspiration-capture/manifest.json
node scripts/check-ui-inspiration-duplicates.mjs articles/YYYY-MM-DD-ui-inspiration-capture/manifest.json
for f in articles/YYYY-MM-DD-ui-inspiration-capture/videos/*.mp4; do ffprobe -v error "$f" >/dev/null; done
Notes
- The scroll video is evidence that the page can render during real scrolling, but it is not a substitute for full-page still evidence.
- Native
fullPage screenshots can still be saved as comparison candidates, but do not use them as source of truth unless they visually match the stitched capture.
- For daily UI articles, update the manifest and commit only the repaired article assets and metadata.
1---2name: stitched-full-page-capture3description: Capture or repair reliable full-page screenshots for lazy-loaded, scroll-animated, Framer, WebGL/canvas, or reveal-heavy web pages. Use when full-page screenshots are blank, gray, white, sparse, show a tiny content strip, disagree with a working scroll video, or when article evidence/section crops must be derived from a trustworthy full-page image.4---56# Stitched Full-Page Capture78## Overview910Use settled viewport screenshots instead of trusting one-shot browser `fullPage` captures. This is especially important for Framer pages and other lazy/scroll-animated sites where the MP4 can look correct while the tall screenshot is mostly blank.1112## Core Workflow13141. Open the real page URL, not a marketplace thumbnail, cover image, remix page, or asset URL.152. Warm the page by scrolling from top to bottom once so lazy media and reveal sections mount.163. Return to the top.174. Scroll downward in viewport-sized or slightly-overlapping steps.185. Wait about 2 seconds after each scroll stop.196. Capture the settled viewport.207. Stitch the viewport captures vertically into one full-page image.218. Cut section crops from that stitched image, not from the native browser `fullPage` screenshot.229. Validate the stitched image against the representative still, MP4, and motion frames.2324Reject a full-page candidate when it has blank/gray/white bands, very low visual content, missing lazy-loaded sections, an extremely narrow content column, or obvious disagreement with the scroll video.2526## Script2728For daily UI inspiration articles, use the helper script from this skill directory when available:2930```bash31node <skills-root>/stitched-full-page-capture/scripts/stitch_full_page_capture.mjs \32 --manifest articles/YYYY-MM-DD-ui-inspiration-capture/manifest.json33```3435The script:3637- reads `items[].pageUrl`, `fullPageImage`, and `sectionImages`;38- opens each live page in Playwright Chromium;39- warms lazy content by scrolling once;40- captures settled viewport slices;41- stitches slices into `fullPageImage`;42- regenerates each existing section crop from the stitched image;43- updates `manifest.json` with `fullPageCaptureMethod: "stitchedViewportScreenshots"`, viewport, step, segment count, and corrected crop coordinates.4445Useful options:4647```bash48--item 4 # repair only item 4, 1-based49--viewport 1440x1100 # default50--step 950 # default; use less than viewport height for overlap51--wait 2000 # ms to wait after each scroll stop52--quality 3 # ffmpeg JPEG quality, lower is better53```5455## Validation5657After capture or repair:5859- Inspect at least the page that was visibly wrong before.60- Confirm `sips -g pixelWidth -g pixelHeight full-page/*.jpg` reports expected wide/tall dimensions.61- Confirm the full-page image is not mostly blank and includes lower-page content.62- Confirm section crop coordinates are contiguous and end at the full-page image height.63- Run the project’s normal checks, for example:6465```bash66git diff --check -- articles/YYYY-MM-DD-ui-inspiration-capture/content.md articles/YYYY-MM-DD-ui-inspiration-capture/manifest.json67node scripts/check-ui-inspiration-duplicates.mjs articles/YYYY-MM-DD-ui-inspiration-capture/manifest.json68for f in articles/YYYY-MM-DD-ui-inspiration-capture/videos/*.mp4; do ffprobe -v error "$f" >/dev/null; done69```7071## Notes7273- The scroll video is evidence that the page can render during real scrolling, but it is not a substitute for full-page still evidence.74- Native `fullPage` screenshots can still be saved as comparison candidates, but do not use them as source of truth unless they visually match the stitched capture.75- For daily UI articles, update the manifest and commit only the repaired article assets and metadata.