Манипуляция свойствами страниц

Получение свойств страниц PDF из существующего PDF файла

PdfPageEditor позволяет работать с отдельными страницами PDF файла. Он помогает вам получить свойства отдельной страницы, такие как размеры различных областей страницы, поворот страницы, масштаб страницы и т.д. Чтобы получить эти свойства, вам нужно создать объект PdfPageEditor и связать входной PDF файл с помощью метода BindPdf. После этого вы можете использовать различные методы для получения свойств страницы, такие как 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 и связать входной PDF файл с помощью метода BindPdf. После этого вы можете использовать эти методы и свойства для установки свойств страницы. Наконец, сохраните обновленный PDF файл с помощью метода Save.

Следующий фрагмент кода показывает, как установить свойства страниц 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 файла

Метод ResizeContents класса PdfPageEditor позволяет изменять размер содержимого страниц в 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");
     }
 }