ページ回転の操作
Contents
[
Hide
]
PdfPageEditor クラスは、ページを回転させる機能を提供します。
PageRotationsを使用してページを回転する
ドキュメント内のページを回転させるには、PageRotations を使用できます。
PageRotations
はページ番号と回転角度を含み、キーはページ番号を表し、キーの値は度数での回転を表します。
public static void RotatePages1()
{
var editor = new PdfPageEditor();
editor.BindPdf(_dataDir + "sample.pdf");
editor.PageRotations = new System.Collections.Generic.Dictionary<int, int> { { 1, 90 }, { 2, 180 }, { 3,270 } };
editor.Save(_dataDir + "sample-rotate-a.pdf");
}
Rotationを使用してページを回転
Rotationプロパティを使用することもできます。回転は0、90、180または270でなければなりません。
public static void RotatePages2()
{
var editor = new PdfPageEditor();
editor.BindPdf(_dataDir + "sample.pdf");
editor.ProcessPages = new int[] { 1, 3 };
editor.Rotation = 90;
editor.Save(_dataDir + "sample-rotate-a.pdf");
}