Manipulasi Properti Halaman

Dapatkan Properti Halaman PDF dari File PDF yang Ada

PdfPageEditor memungkinkan Anda bekerja dengan halaman individual dari file PDF. Ini membantu Anda mendapatkan properti halaman individual seperti ukuran kotak halaman yang berbeda, rotasi halaman, zoom halaman, dll. Untuk mendapatkan properti tersebut, Anda perlu membuat objek PdfPageEditor dan mengikat file PDF input menggunakan metode BindPdf. Setelah itu, Anda dapat menggunakan berbagai metode untuk mendapatkan properti halaman seperti GetPageRotation, GetPages, GetPageBoxSize, dll.

Potongan kode berikut menunjukkan cara mendapatkan properti halaman PDF dari file PDF yang ada.

// 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")}");
    }
}

Atur Properti Halaman PDF dalam File PDF yang Ada

Untuk mengatur properti halaman seperti rotasi halaman, zoom, atau titik asal, Anda perlu menggunakan kelas PdfPageEditor. Kelas ini menyediakan berbagai metode dan properti untuk mengatur properti halaman ini. Pertama-tama, Anda perlu membuat objek dari kelas PdfPageEditor dan mengikat file PDF input menggunakan metode BindPdf. Setelah itu, Anda dapat menggunakan metode dan properti ini untuk mengatur properti halaman. Terakhir, simpan file PDF yang diperbarui menggunakan metode Save.

Potongan kode berikut menunjukkan cara mengatur properti halaman PDF dalam file PDF yang ada.

 // 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");
    }
}

Ubah Ukuran Konten Halaman dari Halaman Tertentu dalam File PDF

Metode ResizeContents dari kelas PdfPageEditor memungkinkan Anda untuk mengubah ukuran konten halaman dalam file PDF. Kelas ContentsResizeParameters digunakan untuk menentukan parameter yang akan digunakan untuk mengubah ukuran halaman, misalnya margin dalam persentase atau unit, dll. Anda dapat mengubah ukuran semua halaman atau menentukan array halaman yang akan diubah ukurannya menggunakan metode ResizeContents.

Potongan kode berikut menunjukkan cara mengubah ukuran konten dari beberapa halaman tertentu dalam file 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");
     }
 }