Categorygithub.com/wms3001/goChromedp
repositorypackage
1.0.0
Repository: https://github.com/wms3001/gochromedp.git
Documentation: pkg.go.dev

# README

goChromedp

简介

Chromedp简单使用,实现截图和打印pdf

使用

go get github.com/wms3001/goChromedp

实例

  1. 截图
goChr := &GoChromedp{}
goChr.Url = "https://www.oschina.net"
goChr.Quality = 100
ctx, cancel := goChr.Ctx()
resp := goChr.Screenshot(ctx, cancel)
res, _ := json.Marshal(resp)
log.Println(string(res))
  1. pdf
goChr := &GoChromedp{}
goChr.Url = "https://www.oschina.net"
ctx, cancel := goChr.Ctx()
resp := goChr.PrintPdf(ctx, cancel)
res, _ := json.Marshal(resp)
log.Println(string(res))