如何設定頁面方向和旋轉
頁面方向指的是頁面的佈局方式,可以是垂直 (縱向) 或水平 (橫向)頁面旋轉是調整頁面角度,使您可以更改其方向,這在糾正對齊或滿足特定視覺偏好時很有用。頁面角度可以設置為90、180和270度。
IronPDF允許您在渲染過程中指定方向為縱向或橫向。此外,您還可以根據需要將新渲染或現有的PDF頁面單獨旋轉至0、90、180或270度的角度。
立即開始在您的專案中使用IronPDF,並享受免費試用。
查看 IronPDF 上 Nuget 快速安裝和部署。已被下載超過800萬次,它正用C#改變PDF。
Install-Package IronPdf
請考慮安裝 IronPDF DLL 直接下載並手動安裝到您的專案或GAC表單: IronPdf.zip
手動安裝到您的項目中
下載DLL頁面方向範例
將格式生成 PDF 文件時,僅能設定頁面方向。您可以從 RenderingOptions 類別中的 PaperOrientation 屬性來進行設定。此屬性可以設置為直向或橫向。直向是預設的頁面方向設定。
代碼
:path=/static-assets/pdf/content-code-examples/how-to/page-orientation-rotation-orientation.cs
using IronPdf;
using IronPdf.Rendering;
ChromePdfRenderer renderer = new ChromePdfRenderer();
// Change paper orientation
renderer.RenderingOptions.PaperOrientation = PdfPaperOrientation.Landscape;
PdfDocument pdf = renderer.RenderUrlAsPdf("https://en.wikipedia.org/wiki/Main_Page");
pdf.SaveAs("landscape.pdf");
Imports IronPdf
Imports IronPdf.Rendering
Private renderer As New ChromePdfRenderer()
' Change paper orientation
renderer.RenderingOptions.PaperOrientation = PdfPaperOrientation.Landscape
Dim pdf As PdfDocument = renderer.RenderUrlAsPdf("https://en.wikipedia.org/wiki/Main_Page")
pdf.SaveAs("landscape.pdf")
輸出 PDF
頁面旋轉範例
IronPDF 提供四種可能的旋轉角度:
- None:0 度或未旋轉的文檔。
- Clockwise90:順時針旋轉 90 度。
- Clockwise180:順時針旋轉 180 度。
- Clockwise270:順時針旋轉 270 度。
請注意
設置頁面旋轉
使用以下方法設置單個頁面、 多個頁面或者全部頁面的旋轉角度。
SetAllPageRotations
:設置所有頁面的旋轉角度。SetPageRotation
:設置單個頁面的旋轉角度。SetPageRotations
:設置選定頁面列表的旋轉角度。
:path=/static-assets/pdf/content-code-examples/how-to/page-orientation-rotation-set-rotation.cs
using IronPdf;
using IronPdf.Rendering;
using System.Collections.Generic;
PdfDocument pdf = PdfDocument.FromFile("landscape.pdf");
// Set all pages
pdf.SetAllPageRotations(PdfPageRotation.Clockwise90);
// Set a single page
pdf.SetPageRotation(1, PdfPageRotation.Clockwise180);
// Set multiple pages
List<int> selectedPages = new List<int>() { 0, 3 };
pdf.SetPageRotations(selectedPages, PdfPageRotation.Clockwise270);
pdf.SaveAs("rotatedLandscape.pdf");
Imports IronPdf
Imports IronPdf.Rendering
Imports System.Collections.Generic
Private pdf As PdfDocument = PdfDocument.FromFile("landscape.pdf")
' Set all pages
pdf.SetAllPageRotations(PdfPageRotation.Clockwise90)
' Set a single page
pdf.SetPageRotation(1, PdfPageRotation.Clockwise180)
' Set multiple pages
Dim selectedPages As New List(Of Integer)() From {0, 3}
pdf.SetPageRotations(selectedPages, PdfPageRotation.Clockwise270)
pdf.SaveAs("rotatedLandscape.pdf")
輸出 PDF
獲取頁面旋轉角度
使用 GetPageRotation
方法來獲取 PDF 文件中任何特定頁面的旋轉角度。只需向該方法提供頁面索引即可。
:path=/static-assets/pdf/content-code-examples/how-to/page-orientation-rotation-get-rotation.cs
using IronPdf;
using IronPdf.Rendering;
PdfDocument pdf = PdfDocument.FromFile("rotatedLandscape.pdf");
PdfPageRotation rotation = pdf.GetPageRotation(1);
Imports IronPdf
Imports IronPdf.Rendering
Private pdf As PdfDocument = PdfDocument.FromFile("rotatedLandscape.pdf")
Private rotation As PdfPageRotation = pdf.GetPageRotation(1)