Разделение PDF-файлов на отдельные страницы или группы страниц — распространённая задача при разработке программного обеспечения. Это может быть необходимо для обработки больших документов, систематизации контента или оптимизации управления данными. В этой статье мы рассмотрим, как можно разделить PDF-файлы на отдельные страницы или группы страниц с помощью C# и .NET.
Чтобы выполнить задачу по разделению PDF-файлов, нам нужно будет выполнить следующие действия:
Полный код
using System;
using System.IO;
using System.IO.Compression;
using System.Collections.Generic;
using SautinSoft;
using SautinSoft.Pdf;
using SautinSoft.Pdf.Content;
using System.Linq;
using SautinSoft.Pdf.Facades;
namespace Sample
{
class Sample
{
/// <summary>
/// Split PDF files in C# and .NET.
/// </summary>
/// <remarks>
/// Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/split-pdf-files.php
/// </remarks>
static void Main(string[] args)
{
// Before starting this example, please get a free trial key:
// https://sautinsoft.com/start-for-free/
// Apply the key here:
// PdfDocument.SetLicense("...");
// Split PDF document by pages.
// The each page will be saves as a separate PDF file: "Page 0.pdf", "Page 1.pdf" ...
// Can work with relative and absolute paths.
PdfSplitter.Split(@"..\..\..\005.pdf", PdfLoadOptions.Default, 0,
int.MaxValue, (pageInd) => $"Page {pageInd}.pdf");
// The last parameter is "Func" to generate the output file name.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(@"Page 0.pdf") { UseShellExecute = true });
}
}
}
Imports System
Imports System.IO
Imports System.IO.Compression
Imports System.Collections.Generic
Imports SautinSoft
Imports SautinSoft.Pdf
Imports SautinSoft.Pdf.Content
Imports System.Linq
Imports SautinSoft.Pdf.Facades
Namespace Sample
Friend Class Sample
''' <summary>
''' Split PDF files in C# and .NET.
''' </summary>
''' <remarks>
''' Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/split-pdf-files.php
''' </remarks>
Shared Sub Main(ByVal args() As String)
' Before starting this example, please get a free trial key:
' https://sautinsoft.com/start-for-free/
' Apply the key here:
' PdfDocument.SetLicense("...");
' Split PDF document by pages.
' The each page will be saves as a separate PDF file: "Page 0.pdf", "Page 1.pdf" ...
' Can work with relative and absolute paths.
PdfSplitter.Split("..\..\..\005.pdf", PdfLoadOptions.Default, 0, Integer.MaxValue, Function(pageInd) $"Page {pageInd}.pdf")
' The last parameter is "Func" to generate the output file name.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo("Page 0.pdf") With {.UseShellExecute = True})
End Sub
End Class
End Namespace
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.ru или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: