Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
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")}");
}
}
为了设置页面属性,如页面旋转、缩放或原点,您需要使用 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");
}
}
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");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.