ASP.NET プロジェクトで Rotativa を使用していますが、PDF を生成するために使用される HTML コンテンツを単一の横向きのページに縮小するようにプログラムで指示する方法があるかどうか疑問に思っています。
私の現在のコードは次のようになります。
public ActionResult PrintStratgicMap(int employeeId, string slug, string fiscalYear)
{
return new ActionAsPdf("Goals", new { employeeId = employeeId, slug = slug, fiscalYear = fiscalYear })
{ FileName = "strategic_map.pdf",
FormsAuthenticationCookieName = ".auth",
CustomSwitches = "--print-media-type",
PageOrientation=Rotativa.Options.Orientation.Landscape
};
}