我无法设置网页的视口宽度以从 URL 生成 PDF。
我的代码如下:
var pechkin = Factory.Create(new GlobalConfig()
.SetPaperOrientation(true)
.SetPaperSize(PaperKind.A2)
.SetDocumentTitle("title")
);
var pdf = pechkin.Convert(new ObjectConfig()
.SetLoadImages(true)
.SetZoomFactor(1)
.SetPrintBackground(true)
.SetScreenMediaType(true)
.SetCreateExternalLinks(true)
.SetCreateInternalLinks(true)
.SetIntelligentShrinking(false)
.SetPageUri(urltxt.Text.Trim().ToString())
);
#endregion
没有这样的选项来设置视口宽度。