This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Page } from "puppeteer"; | |
import sharp from "sharp"; | |
// Max texture size of the software GL backand of chronium. (16384px or 4096px) | |
// https://issues.chromium.org/issues/41347676 | |
export const MAX_SIZE_PX = 16384; | |
const takeFullPageScreenshot = async (page: Page) => { | |
const pageHeight = await getPageHeight(page); | |
const deviceScaleFactor = page.viewport()?.deviceScaleFactor ?? 1; |