我需要使用 Rotativa PDF 在页眉或页脚上插入一些图像。
我正在使用带有 Razor 的 C# MVC4
我已经尝试过: CustomSwitches = "--print-media-type --header-center \"text\""
我需要使用 Rotativa PDF 在页眉或页脚上插入一些图像。
我正在使用带有 Razor 的 C# MVC4
我已经尝试过: CustomSwitches = "--print-media-type --header-center \"text\""
如果您想在页眉/页脚中显示视图而不是文本,则可以将图像添加到视图中。
public ActionResult ViewPDF()
{
string cusomtSwitches = string.Format("--print-media-type --allow {0} --footer-html {0}"
Url.Action("Footer", "Document", new { area = ""}, "https"));
return new ViewAsPdf("MyPDF.cshtml", model)
{
FileName = "MyPDF.pdf",
CustomSwitches = customSwitches
};
}
[AllowAnonymous]
public ActionResult Footer()
{
return View();
}
不要忘记在页脚操作中添加 [AllowAnonymous] 属性,否则 Rotatina 无法访问路径。