goChromedp
简介
Chromedp简单使用,实现截图和打印pdf
使用
go get github.com/wms3001/goChromedp
实例
- 截图
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))
goChr := &GoChromedp{}标签:截图,res,resp,ctx,Chromedp,cancel,pdf,goChr From: https://blog.51cto.com/wms3001/5726925
goChr.Url = "https://www.oschina.net"
ctx, cancel := goChr.Ctx()
resp := goChr.PrintPdf(ctx, cancel)
res, _ := json.Marshal(resp)
log.Println(string(res))