Created
April 25, 2021 18:52
-
-
Save csthompson/8fd929f007546a60f2fd953beea2ada8 to your computer and use it in GitHub Desktop.
This file contains 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
// 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