페이지 속성 조작

기존 PDF 파일에서 PDF 페이지 속성 가져오기

PdfPageEditor는 PDF 파일의 개별 페이지와 작업할 수 있게 해줍니다. 이를 통해 다양한 페이지 박스 크기, 페이지 회전, 페이지 확대/축소 등과 같은 개별 페이지의 속성을 가져올 수 있습니다. 이러한 속성을 가져오기 위해서는 PdfPageEditor 객체를 생성하고 BindPdf 메서드를 사용하여 입력 PDF 파일을 바인딩해야 합니다. 그 후, GetPageRotation, GetPages, GetPageBoxSize 등과 같은 다양한 메서드를 사용하여 페이지 속성을 가져올 수 있습니다.

다음 코드 스니펫은 기존 PDF 파일에서 PDF 페이지 속성을 가져오는 방법을 보여줍니다.

// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void GetPdfPageProperties()
{
    // The path to the documents directory
    var dataDir = RunExamples.GetDataDir_AsposePdf();

    // Open PDF document
    using (var pageEditor = new Aspose.Pdf.Facades.PdfPageEditor())
    {
        // Bind PDF document
        pageEditor.BindPdf(dataDir + "input.pdf");

        // Get page properties and print them to the console
        Console.WriteLine($"Page 1 Rotation: {pageEditor.GetPageRotation(1)}");
        Console.WriteLine($"Total Pages: {pageEditor.GetPages()}");
        Console.WriteLine($"Trim Box Size of Page 1: {pageEditor.GetPageBoxSize(1, "trim")}");
        Console.WriteLine($"Art Box Size of Page 1: {pageEditor.GetPageBoxSize(1, "art")}");
        Console.WriteLine($"Bleed Box Size of Page 1: {pageEditor.GetPageBoxSize(1, "bleed")}");
        Console.WriteLine($"Crop Box Size of Page 1: {pageEditor.GetPageBoxSize(1, "crop")}");
        Console.WriteLine($"Media Box Size of Page 1: {pageEditor.GetPageBoxSize(1, "media")}");
    }
}

기존 PDF 파일에서 PDF 페이지 속성 설정하기

페이지 회전, 확대/축소 또는 원점과 같은 페이지 속성을 설정하려면 PdfPageEditor 클래스를 사용해야 합니다. 이 클래스는 이러한 페이지 속성을 설정하기 위한 다양한 메서드와 속성을 제공합니다. 우선, PdfPageEditor 클래스의 객체를 생성하고 BindPdf 메서드를 사용하여 입력 PDF 파일을 바인딩해야 합니다. 그 후, 이러한 메서드와 속성을 사용하여 페이지 속성을 설정할 수 있습니다. 마지막으로, Save 메서드를 사용하여 업데이트된 PDF 파일을 저장합니다.

다음 코드 스니펫은 기존 PDF 파일에서 PDF 페이지 속성을 설정하는 방법을 보여줍니다.

 // For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void SetPdfPageProperties()
{
    // The path to the documents directory
    var dataDir = RunExamples.GetDataDir_AsposePdf();

    // Open PDF document
    using (var pageEditor = new Aspose.Pdf.Facades.PdfPageEditor())
    {
        // Bind PDF document
        pageEditor.BindPdf(dataDir + "input.pdf");

        // Set page properties
        // Move origin from (0,0)
        pageEditor.MovePosition(100, 100);

        // Set page rotations
        var pageRotations = new System.Collections.Hashtable
        {
            { 1, 90 },
            { 2, 180 },
            { 3, 270 }
        };

        // Set zoom where 1.0f = 100% zoom
        pageEditor.Zoom = 2.0f;

        // Save PDF document
        pageEditor.Save(dataDir + "SetPageProperties_out.pdf");
    }
}

PDF 파일의 특정 페이지 콘텐츠 크기 조정

PdfPageEditor 클래스의 ResizeContents 메서드는 PDF 파일의 페이지 콘텐츠 크기를 조정할 수 있게 해줍니다. ContentsResizeParameters 클래스는 페이지를 크기 조정하는 데 사용할 매개변수를 지정하는 데 사용됩니다. 예를 들어, 비율 또는 단위로 여백을 설정할 수 있습니다. 모든 페이지의 크기를 조정하거나 ResizeContents 메서드를 사용하여 크기를 조정할 페이지 배열을 지정할 수 있습니다.

다음 코드 스니펫은 PDF 파일의 특정 페이지 콘텐츠 크기를 조정하는 방법을 보여줍니다.

  // For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
 private static void ResizePdfPageContents()
 {
     // The path to the documents directory
     var dataDir = RunExamples.GetDataDir_AsposePdf();

     // Create PdfFileEditor Object
     var fileEditor = new Aspose.Pdf.Facades.PdfFileEditor();

     // Open PDF Document
     using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
     {
         // Specify Parameters to be used for resizing
         var parameters = new Aspose.Pdf.Facades.PdfFileEditor.ContentsResizeParameters(
             // Left margin = 10% of page width
             PdfFileEditor.ContentsResizeValue.Percents(10),
             // New contents width calculated automatically as width - left margin - right margin (100% - 10% - 10% = 80%)
             null,
             // Right margin is 10% of page
             PdfFileEditor.ContentsResizeValue.Percents(10),
             // Top margin = 10% of height
             PdfFileEditor.ContentsResizeValue.Percents(10),
             // New contents height is calculated automatically (similar to width)
             null,
             // Bottom margin is 10%
             PdfFileEditor.ContentsResizeValue.Percents(10)
         );

         // Resize Page Contents
         fileEditor.ResizeContents(document, new[] { 1, 2 }, parameters);

         // Save PDF document
         document.Save(dataDir + "ResizePageContents_out.pdf");
     }
 }