0

我正在使用 cefsharp 将页面保存为 PDF,但我使用的自定义页眉/页脚数据只打印了一半。

这是代码

PdfPrintSettings pdfSettings = new PdfPrintSettings
{
  BackgroundsEnabled = false,
  HeaderFooterEnabled = true,
  HeaderFooterUrl = "some url string",
  HeaderFooterTitle = "some title string "
};
cef.PrintToPdfAsync(fileName, pdfSettings).Wait();

该页面打印正确,但页眉/页脚是:

  • 左上角的日期(不是我设置的)
  • 右上角的原始页面标题(不是我设置的)
  • 左下角的HeaderFooterUrl,居然是我设置的!
  • 右下角的页面计数器(不是我设置的)

我怎样才能完全控制这些元素?这是可能的还是我应该用cef/cefsharp打开一个错误?

4

0 回答 0