0
下面是我的代碼在iTextSharp的創建自定義頁面大小。 頁面現已打印在橫向模式。我想在人像打印。如何打印自定義頁面大小的肖像iTextSharp的
document = new Document(new iTextSharp.text.Rectangle(410f, 288f));
下面是我的代碼在iTextSharp的創建自定義頁面大小。 頁面現已打印在橫向模式。我想在人像打印。如何打印自定義頁面大小的肖像iTextSharp的
document = new Document(new iTextSharp.text.Rectangle(410f, 288f));
替換:
document = new Document(new iTextSharp.text.Rectangle(410f, 288f));
有了:
document = new Document(new iTextSharp.text.Rectangle(410f, 288f).Rotate());
而自定義頁面將旋轉90度,如果這就是你想要的。
Document document = new Document(default(iTextSharp.text.Rectangle));
document.SetPageSize(new iTextSharp.text.Rectangle(410f, 288f).Rotate());
請試試這個。