Skip to content

Instantly share code, notes, and snippets.

@csthompson
Created April 25, 2021 18:52
Show Gist options
  • Save csthompson/8fd929f007546a60f2fd953beea2ada8 to your computer and use it in GitHub Desktop.
Save csthompson/8fd929f007546a60f2fd953beea2ada8 to your computer and use it in GitHub Desktop.
// Take a full screenshot of the page and override the viewport to match the required card dimensions
func fullScreenshot(urlstr string, quality int64, res *[]byte) chromedp.Tasks {
return chromedp.Tasks{
chromedp.Navigate(urlstr),
chromedp.ActionFunc(func(ctx context.Context) error {
err := emulation.SetDeviceMetricsOverride(597, 1122, 0, false).
WithScreenOrientation(&emulation.ScreenOrientation{
Type: emulation.OrientationTypePortraitPrimary,
Angle: 0,
}).
Do(ctx)
if err != nil {
return err
}
// capture screenshot
*res, err = page.CaptureScreenshot().
WithQuality(quality).
WithClip(&page.Viewport{
X: 0,
Y: 0,
Width: 597,
Height: 1122,
Scale: 1,
}).Do(ctx)
if err != nil {
return err
}
return nil
}),
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment